/* style/index-review-one88.css */

:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light-gray: #f1f3f5;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, considering body background is dark #0f172a */
.page-index-review-one88 {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: transparent; /* Main content background will be managed by sections */
  font-family: 'Arial', sans-serif;
}

/* HERO Section */
.page-index-review-one88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, var(--primary-color), #001f3f); /* Darker gradient for hero */
  color: var(--text-light);
  overflow: hidden;
}

.page-index-review-one88__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-index-review-one88__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}

.page-index-review-one88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-one88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.page-index-review-one88__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-one88__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-index-review-one88__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-index-review-one88__hero-link-text {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-one88__hero-link-text:hover {
  color: #fff;
}

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), #ffc107); /* Gold gradient */
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-index-review-one88__cta-button:hover {
  background: linear-gradient(135deg, #ffc107, var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Brand Review Content Section */
.page-index-review-one88__review-content-section {
  padding: 60px 20px;
  background: var(--bg-light-gray); /* Light background for readability */
  color: var(--text-dark);
}

.page-index-review-one88__review-content-container {
  max-width: 1000px; 
  margin: 0 auto;
}

.page-index-review-one88__review-content-card {
  background: var(--text-light); /* White background */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  padding: 40px;
  line-height: 1.7;
}

.page-index-review-one88__main-heading {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 15px;
}

.page-index-review-one88__sub-heading {
  font-size: 24px;
  font-weight: bold; 
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-index-review-one88__sub-sub-heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.page-index-review-one88__review-body p {
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-dark);
}

.page-index-review-one88__review-body ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-index-review-one88__review-body li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.page-index-review-one88__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-one88__text-link:hover {
  color: var(--secondary-color);
}

.page-index-review-one88__small-button {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 20px;
}

.page-index-review-one88__pros-cons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-review-one88__pros, .page-index-review-one88__cons {
  flex: 1;
  min-width: 280px;
  background: var(--text-light);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-index-review-one88__pros h4 {
  color: #28a745; /* Green for Pros */
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-one88__cons h4 {
  color: #dc3545; /* Red for Cons */
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-one88__pros ul, .page-index-review-one88__cons ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-index-review-one88__pros li::before {
  content: '✔';
  color: #28a745;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.page-index-review-one88__cons li::before {
  content: '✖';
  color: #dc3545;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

/* FAQ Section */
.page-index-review-one88__faq-section {
  padding: 60px 20px;
  background: var(--primary-color); /* Dark background for FAQ */
  color: var(--text-light);
}

.page-index-review-one88__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-review-one88__faq-main-heading {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
}

.page-index-review-one88__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #002244; /* Slightly lighter dark background for answer */
  color: var(--text-light);
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-index-review-one88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #003366; /* Primary color as question background */
  border: 1px solid #004488;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-index-review-one88__faq-question:hover {
  background: #004488;
  border-color: #0055aa;
}

.page-index-review-one88__faq-question:active {
  background: #002244;
}

.page-index-review-one88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-index-review-one88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg); /* Rotate '+' to 'x' */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-one88__review-content-container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-one88__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-review-one88__hero-title {
    font-size: 32px;
  }

  .page-index-review-one88__hero-description {
    font-size: 16px;
  }

  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-index-review-one88__review-content-section {
    padding: 30px 15px;
  }
  
  .page-index-review-one88__review-content-card {
    padding: 25px 20px;
  }

  .page-index-review-one88__main-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-index-review-one88__sub-heading {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-index-review-one88__sub-sub-heading {
    font-size: 18px;
  }

  .page-index-review-one88__review-body p,
  .page-index-review-one88__review-body li {
    font-size: 15px;
  }

  .page-index-review-one88__pros-cons {
    flex-direction: column;
    gap: 20px;
  }

  .page-index-review-one88__pros, .page-index-review-one88__cons {
    padding: 20px;
  }

  .page-index-review-one88__faq-section {
    padding: 30px 15px;
  }

  .page-index-review-one88__faq-main-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-index-review-one88__faq-question {
    padding: 15px 20px;
  }

  .page-index-review-one88__faq-question h3 {
    font-size: 16px;
  }

  .page-index-review-one88__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-index-review-one88__hero-title {
    font-size: 28px;
  }

  .page-index-review-one88__hero-description {
    font-size: 15px;
  }

  .page-index-review-one88__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }

  .page-index-review-one88__main-heading {
    font-size: 24px;
  }

  .page-index-review-one88__sub-heading {
    font-size: 18px;
  }

  .page-index-review-one88__faq-main-heading {
    font-size: 24px;
  }
}