.page-index-review-fa88 {
  background-color: #000; /* Body background from shared.css is #000 (dark) */
  color: #f0f0f0; /* Use light text for main content on dark body background */
  font-family: 'Arial', sans-serif;
}

.page-index-review-fa88__review-content-section {
  padding: 40px 20px;
  padding-top: 120px; /* Adjust for fixed header on desktop */
  background: #000; /* Match body background for consistency */
}

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

.page-index-review-fa88__review-content-card {
  background: #1a1a1a; /* Darker card background for contrast on black body */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: #f0f0f0; /* Light text on dark card */
}

.page-index-review-fa88__main-title {
  font-size: 36px;
  font-weight: bold;
  color: #E3B505; /* Auxiliary color for main title */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-fa88__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: #E3B505; /* Auxiliary color for section titles */
  margin-top: 40px;
  margin-bottom: 24px;
  text-align: left;
  border-bottom: 2px solid rgba(227, 181, 5, 0.3);
  padding-bottom: 10px;
}

.page-index-review-fa88__review-content-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #E3B505; /* Auxiliary color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-index-review-fa88__review-body p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0; /* Slightly lighter text for paragraphs */
}

.page-index-review-fa88__review-body a.page-index-review-fa88__inline-link {
  color: #E3B505; /* Auxiliary color for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fa88__review-body a.page-index-review-fa88__inline-link:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.page-index-review-fa88__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 18px 45px;
  background: linear-gradient(135deg, #E3B505, #ffcc00); /* Gold gradient */
  color: #0A2463; /* Dark blue text on gold button */
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 6px 20px rgba(227, 181, 5, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.page-index-review-fa88__cta-button:hover {
  background: linear-gradient(135deg, #ffcc00, #E3B505); /* Reverse gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227, 181, 5, 0.6);
}

.page-index-review-fa88__image-wrapper {
  margin: 30px 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-review-fa88__image-caption {
  font-size: 14px;
  color: #b0b0b0;
  margin-top: 10px;
  padding: 0 15px;
}

/* FAQ Section */
.page-index-review-fa88__faq-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for FAQ */
  color: #f0f0f0;
}

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

.page-index-review-fa88__faq-title {
  font-size: 32px;
  font-weight: bold;
  color: #E3B505;
  text-align: center;
  margin-bottom: 40px;
}

.page-index-review-fa88__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index-review-fa88__faq-item {
  margin-bottom: 0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(227, 181, 5, 0.2);
}

.page-index-review-fa88__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 15px;
  opacity: 0;
  color: #d0d0d0;
  font-size: 16px;
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #1a1a1a; /* Dark background for expanded answer */
  border-radius: 0 0 5px 5px;
}

.page-index-review-fa88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2463; /* Main brand color for question background */
  border: 1px solid #0A2463;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-index-review-fa88__faq-question:hover {
  background: #1a3a7a;
  border-color: #1a3a7a;
}

.page-index-review-fa88__faq-question:active {
  background: #2a4a8a;
}

.page-index-review-fa88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff; /* White text on dark blue question */
}

.page-index-review-fa88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E3B505; /* Auxiliary color for toggle icon */
  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-fa88__faq-item.active .page-index-review-fa88__faq-toggle {
  color: #ffcc00;
  transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-index-review-fa88__copyright-section {
  background-color: #000; /* Match body background */
  color: #666;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

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

.page-index-review-fa88__copyright-section p {
  margin: 0;
  color: #666;
}

.page-index-review-fa88__copyright-section a {
  color: #E3B505;
  text-decoration: none;
}

.page-index-review-fa88__copyright-section a:hover {
  text-decoration: underline;
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__main-title {
    font-size: 30px;
  }
  .page-index-review-fa88__review-content-card h2 {
    font-size: 24px;
  }
  .page-index-review-fa88__review-content-card h3 {
    font-size: 20px;
  }
  .page-index-review-fa88__review-body p {
    font-size: 16px;
  }
  .page-index-review-fa88__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-index-review-fa88__faq-title {
    font-size: 28px;
  }
  .page-index-review-fa88__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__review-content-section {
    padding: 20px 15px;
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
  }
  .page-index-review-fa88__review-content-card {
    padding: 25px 20px;
  }
  .page-index-review-fa88__main-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page-index-review-fa88__review-content-card h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 18px;
  }
  .page-index-review-fa88__review-content-card h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-index-review-fa88__review-body p {
    font-size: 15px;
    line-height: 1.6;
  }
  .page-index-review-fa88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin: 30px auto 15px auto;
  }
  .page-index-review-fa88__image-wrapper {
    margin: 20px 0;
  }
  .page-index-review-fa88__image-caption {
    font-size: 13px;
  }
  .page-index-review-fa88__faq-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88__faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-index-review-fa88__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  .page-index-review-fa88__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-index-review-fa88__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    padding: 15px 20px !important;
  }
  .page-index-review-fa88__faq-answer p {
    font-size: 15px;
  }
  .page-index-review-fa88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-fa88__review-content-container,
  .page-index-review-fa88__faq-container,
  .page-index-review-fa88__copyright-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-index-review-fa88__review-content-section .page-index-review-fa88__review-content-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88__main-title {
    font-size: 22px;
  }
  .page-index-review-fa88__review-content-card h2 {
    font-size: 20px;
  }
  .page-index-review-fa88__review-content-card h3 {
    font-size: 17px;
  }
  .page-index-review-fa88__review-body p {
    font-size: 14px;
  }
  .page-index-review-fa88__cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-index-review-fa88__faq-title {
    font-size: 22px;
  }
  .page-index-review-fa88__faq-question h3 {
    font-size: 14px;
  }
  .page-index-review-fa88__faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    padding: 10px 15px !important;
  }
  .page-index-review-fa88__faq-answer p {
    font-size: 14px;
  }
  .page-index-review-fa88__copyright-section {
    padding: 20px 10px;
    font-size: 12px;
  }
}