.page-index-review-fabet__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), var(--secondary-color));
  color: #ffffff;
}

.page-index-review-fabet__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-fabet__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-index-review-fabet__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-index-review-fabet__hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-index-review-fabet__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-fabet__cta-button:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

.page-index-review-fabet__content-section {
  padding: 40px 20px;
  background: #f1f3f5; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

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

.page-index-review-fabet__card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
}

.page-index-review-fabet__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #007BFF; /* Brand color for headings */
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-fabet__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-index-review-fabet__text-block {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-index-review-fabet__keyword-highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.page-index-review-fabet__image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
}

.page-index-review-fabet__link-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-fabet__link-button:hover {
  background: var(--secondary-color);
}

.page-index-review-fabet__link-promotion {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__link-promotion:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-review-fabet__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-index-review-fabet__list li strong {
  color: #007BFF;
}

.page-index-review-fabet__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet__hero-title {
    font-size: 36px;
  }
  .page-index-review-fabet__hero-description {
    font-size: 16px;
  }
  .page-index-review-fabet__section-title {
    font-size: 28px;
  }
  .page-index-review-fabet__sub-title {
    font-size: 22px;
  }
  .page-index-review-fabet__card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index-review-fabet__hero-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-index-review-fabet__hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-index-review-fabet__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-fabet__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }

  .page-index-review-fabet__content-section {
    padding: 20px 15px;
  }

  .page-index-review-fabet__card {
    padding: 25px;
  }

  .page-index-review-fabet__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-index-review-fabet__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-index-review-fabet__text-block,
  .page-index-review-fabet__list li {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-index-review-fabet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-fabet__section,
  .page-index-review-fabet__card,
  .page-index-review-fabet__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}