.page-index-review-fa88 {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Inherited from body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-index-review-fa88 {
    padding-top: 100px; /* Space for fixed header on mobile */
  }
}

.page-index-review-fa88__hero-banner {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a); /* Dark gradient background for banner */
}

.page-index-review-fa88__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-fa88__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-index-review-fa88__hero-content {
  text-align: center;
  width: 100%;
}

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

.page-index-review-fa88__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__btn-primary {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #1a1a1a; /* Dark text for gold background */
  border: none;
}

.page-index-review-fa88__btn-primary:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88__btn-secondary {
  background: linear-gradient(135deg, #DC143C, #A0002A); /* Deep red gradient */
  color: #ffffff; /* White text for deep red background */
  border: none;
  margin-top: 20px;
}

.page-index-review-fa88__btn-secondary:hover {
  background: linear-gradient(135deg, #A0002A, #DC143C);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88__review-content-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
}

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

.page-index-review-fa88__review-content-card {
  background: #2a2a2a; /* Dark card background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: #f0f0f0; /* Light text for dark card background */
}

.page-index-review-fa88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #DC143C; /* Deep red brand color */
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-index-review-fa88__review-content-card p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #e0e0e0;
}

.page-index-review-fa88__link {
  color: #FFD700; /* Gold link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fa88__link:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-index-review-fa88__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-review-fa88__faq-section {
  padding: 60px 20px;
  background-color: #121212; /* Dark background */
}

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

.page-index-review-fa88__faq-list {
  margin-top: 30px;
}

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

.page-index-review-fa88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a; /* Darker background for question */
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-fa88__faq-question:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

.page-index-review-fa88__faq-question:active {
  background: #4a4a4a;
}

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

.page-index-review-fa88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  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: #DC143C; /* Deep red when active */
  transform: rotate(45deg); /* Rotate to form 'x' or 'minus' */
}

.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;
  padding: 0 25px;
  opacity: 0;
  background: #1f1f1f; /* Slightly lighter dark background for answer */
  color: #d0d0d0;
  border-top: 1px solid #3a3a3a;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__main-title {
    font-size: 36px;
  }
  .page-index-review-fa88__section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-banner {
    padding: 40px 15px;
  }
  .page-index-review-fa88__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-index-review-fa88__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-index-review-fa88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-fa88__review-content-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88__review-content-card {
    padding: 30px 20px;
  }
  .page-index-review-fa88__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .page-index-review-fa88__sub-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    padding-left: 10px;
  }
  .page-index-review-fa88__review-content-card p {
    font-size: 15px;
  }
  .page-index-review-fa88__content-image {
    margin: 25px auto;
  }
  .page-index-review-fa88__faq-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88__faq-question {
    padding: 15px 20px;
  }
  .page-index-review-fa88__faq-question h3 {
    font-size: 16px;
  }
  .page-index-review-fa88__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88__main-title {
    font-size: 28px;
  }
  .page-index-review-fa88__section-title {
    font-size: 22px;
  }
  .page-index-review-fa88__hero-description {
    font-size: 15px;
  }
  .page-index-review-fa88__cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-index-review-fa88__sub-title {
    font-size: 18px;
  }
  .page-index-review-fa88__faq-question h3 {
    font-size: 15px;
  }
  .page-index-review-fa88__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}