.page-index-review-one88 {
  color: #333333; /* Default text color for light backgrounds */
}

.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: 180px 20px 60px; /* Adjusted padding-top for fixed header */
  background-color: var(--site-primary); /* Use site primary for hero section background */
}

.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;
}

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

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

.page-index-review-one88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-index-review-one88__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff; /* White text for dark background */
}

.page-index-review-one88__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for description */
}

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--site-secondary); /* Use site secondary for CTA button */
  color: #1A202C; /* Dark text for secondary color background */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__cta-button:hover {
  background: #FFC107; /* Slightly lighter secondary color on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-one88__cta-button--light {
  background: #ffffff;
  color: var(--site-primary);
}

.page-index-review-one88__cta-button--light:hover {
  background: #f0f0f0;
}

.page-index-review-one88__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--site-primary);
}

.page-index-review-one88__section-title--light {
  color: #ffffff;
}

.page-index-review-one88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-one88__overview-section,
.page-index-review-one88__detail-review-section,
.page-index-review-one88__pros-cons-section,
.page-index-review-one88__faq-section {
  padding: 60px 0;
  background-color: #f1f3f5; /* Light background for content sections */
  color: #333333;
}

.page-index-review-one88__dark-bg {
  background-color: var(--site-primary);
  color: #ffffff;
}

.page-index-review-one88__light-bg {
  background-color: #f1f3f5;
  color: #333333;
}

.page-index-review-one88__text-block {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.page-index-review-one88__text-block p {
  margin-bottom: 15px;
}

.page-index-review-one88__text-block a {
  color: var(--site-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-one88__text-block a:hover {
  text-decoration: underline;
}

.page-index-review-one88__text-block--light p,
.page-index-review-one88__text-block--light a {
  color: #ffffff;
}

.page-index-review-one88__text-block--light a:hover {
  color: var(--site-secondary);
}

.page-index-review-one88__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-one88__review-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-one88__review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-one88__card-img {
  width: 250px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-index-review-one88__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--site-primary);
}

.page-index-review-one88__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  text-align: justify;
}

.page-index-review-one88__card-text a {
  color: var(--site-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-one88__card-text a:hover {
  text-decoration: underline;
}

.page-index-review-one88__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-review-one88__guide-section {
  padding: 60px 0;
  background-color: var(--site-primary);
}

.page-index-review-one88__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-one88__step-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-one88__step-img {
  width: 250px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-index-review-one88__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--site-primary);
}

.page-index-review-one88__step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  text-align: justify;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-review-one88__step-text a {
  color: var(--site-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-one88__step-text a:hover {
  text-decoration: underline;
}

.page-index-review-one88__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #ffffff;
  color: var(--site-primary);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--site-primary);
}

.page-index-review-one88__btn-secondary:hover {
  background: var(--site-primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-one88__pros-block,
.page-index-review-one88__cons-block {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.page-index-review-one88__block-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  color: var(--site-primary);
}

.page-index-review-one88__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-review-one88__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-index-review-one88__icon {
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
  flex-shrink: 0;
}

.page-index-review-one88__icon--check {
  color: #28a745; /* Green for checkmark */
}

.page-index-review-one88__icon--cross {
  color: #dc3545; /* Red for cross */
}

.page-index-review-one88__list li a {
  color: var(--site-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-one88__list li a:hover {
  text-decoration: underline;
}

.page-index-review-one88__conclusion-section {
  padding: 60px 0;
  background-color: var(--site-primary);
}

.page-index-review-one88__text-block--light {
  color: #ffffff;
}

.page-index-review-one88__text-block--light a {
  color: var(--site-secondary);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-one88__text-block--light a:hover {
  text-decoration: underline;
}

.page-index-review-one88__faq-list {
  margin-top: 40px;
}

.page-index-review-one88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
  padding: 0 15px;
  opacity: 0;
}

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

.page-index-review-one88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-one88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

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

.page-index-review-one88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-index-review-one88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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: 28px;
  height: 28px;
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

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

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

  .page-index-review-one88__section-title {
    font-size: 30px;
  }

  .page-index-review-one88__review-grid,
  .page-index-review-one88__guide-steps {
    gap: 20px;
  }

  .page-index-review-one88__pros-cons-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding: 140px 15px 40px; /* Adjusted padding-top for mobile fixed header */
  }

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

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

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

  .page-index-review-one88__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-index-review-one88__overview-section,
  .page-index-review-one88__detail-review-section,
  .page-index-review-one88__pros-cons-section,
  .page-index-review-one88__guide-section,
  .page-index-review-one88__conclusion-section,
  .page-index-review-one88__faq-section {
    padding: 40px 0;
  }

  .page-index-review-one88__review-card,
  .page-index-review-one88__step-card,
  .page-index-review-one88__pros-block,
  .page-index-review-one88__cons-block {
    padding: 20px;
  }

  .page-index-review-one88__card-img,
  .page-index-review-one88__step-img {
    width: 200px;
    height: 120px;
  }

  .page-index-review-one88__card-title {
    font-size: 20px;
  }

  .page-index-review-one88__block-title {
    font-size: 24px;
  }

  .page-index-review-one88__list li,
  .page-index-review-one88__card-text,
  .page-index-review-one88__step-text,
  .page-index-review-one88__text-block p {
    font-size: 15px;
  }

  .page-index-review-one88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-one88__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-review-one88__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-review-one88__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
    padding: 15px !important;
  }
}