.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-index-review-fabet__hero-banner {
  position: relative;
  background: linear-gradient(135deg, #0056B3, #FFD700);
  padding-top: 180px; /* For fixed header desktop */
  padding-bottom: 80px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-index-review-fabet__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fabet__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-index-review-fabet__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  margin-top: 20px;
}

.page-index-review-fabet__content-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-index-review-fabet__text-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__text-block:last-child {
  margin-bottom: 0;
}

.page-index-review-fabet__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-index-review-fabet__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-index-review-fabet__text-block li {
  margin-bottom: 8px;
  font-size: 17px;
}

.page-index-review-fabet__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fabet__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index-review-fabet__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover; /* Ensure images cover their area nicely */
  min-width: 200px;
  min-height: 200px;
}

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

.page-index-review-fabet__pros, .page-index-review-fabet__cons {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__pros h3, .page-index-review-fabet__cons h3 {
  font-size: 24px;
  color: #0056B3;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-fabet__pros h3 {
  color: #FFD700;
}

.page-index-review-fabet__cons h3 {
  color: #FF6347; /* Tomato red for cons */
}

.page-index-review-fabet__pros ul, .page-index-review-fabet__cons ul {
  list-style-type: '✅ ';
  margin-left: 20px;
  padding: 0;
}

.page-index-review-fabet__cons ul {
  list-style-type: '❌ ';
}

.page-index-review-fabet__pros li, .page-index-review-fabet__cons li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f0f0f0;
}

.page-index-review-fabet__faq-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

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

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

.page-index-review-fabet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(0, 86, 179, 0.8); /* Darker blue for question background */
  border: 1px solid rgba(0, 86, 179, 0.9);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-fabet__faq-question:hover {
  background: rgba(0, 86, 179, 0.9);
  border-color: #0056B3;
}

.page-index-review-fabet__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-index-review-fabet__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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-fabet__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 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
  color: #f0f0f0;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Change + to X or a rotated + */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-fabet__main-title {
    font-size: 40px;
  }

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

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

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

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

@media (max-width: 768px) {
  .page-index-review-fabet__hero-banner {
    padding-top: 140px; /* For fixed header mobile */
    padding-bottom: 60px;
  }

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

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

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

  .page-index-review-fabet__cta-button--small {
    padding: 8px 20px;
    font-size: 14px;
  }

  .page-index-review-fabet__content-section,
  .page-index-review-fabet__faq-section {
    padding: 40px 0;
  }

  .page-index-review-fabet__text-block {
    padding: 20px;
    margin-bottom: 30px;
  }

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

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

  .page-index-review-fabet__pros h3, .page-index-review-fabet__cons h3 {
    font-size: 20px;
  }

  .page-index-review-fabet__pros li, .page-index-review-fabet__cons li {
    font-size: 15px;
  }

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