.page-faqs__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjusted for better visual balance */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
}

.page-faqs__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly transparent to allow text readability */
}

.page-faqs__hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-main, #F2FFF6); /* Ensure text is visible on dark background */
  max-width: 800px;
  padding: 20px;
}

.page-faqs__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-faqs__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-faqs__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF; /* White text on green button */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faqs__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faqs__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-faqs__faq-section {
  padding: 60px 20px;
  background-color: var(--card-bg, #11271B); /* Dark background for FAQ section */
  color: var(--text-main, #F2FFF6);
}

.page-faqs__container {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-faqs__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-faqs__section-title--dark {
  color: var(--text-main, #333333); /* Dark text for light background section */
}

.page-faqs__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
}

.page-faqs__section-description--dark {
  color: var(--text-secondary, #555555); /* Dark text for light background section */
}

.page-faqs__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faqs__faq-item {
  background-color: var(--background, #08160F); /* Slightly darker than section bg */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border, #2E7A4E);
  color: var(--text-main, #F2FFF6);
}

.page-faqs__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C); /* A bit darker for question header */
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-faqs__faq-question::-webkit-details-marker {
  display: none;
}

.page-faqs__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--glow, #57E38D);
}

.page-faqs__faq-item[open] .page-faqs__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-faqs__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary, #A7D9B8);
}

.page-faqs__faq-answer p {
  margin-bottom: 15px;
}

.page-faqs__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faqs__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faqs__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.page-faqs__cta-button--secondary {
  background: var(--card-bg, #11271B);
  color: var(--glow, #57E38D);
  border: 2px solid var(--border, #2E7A4E);
}

.page-faqs__cta-button--secondary:hover {
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  border-color: var(--glow, #57E38D);
}

.page-faqs__promotion-cta {
  padding: 60px 20px;
  text-align: center;
  background-color: #F2FFF6; /* Light background for contrast */
  color: var(--text-main, #333333);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-faqs__hero-section {
    height: auto;
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-faqs__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-faqs__description {
    font-size: 1rem;
  }

  .page-faqs__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .page-faqs__section-title {
    font-size: 2rem;
  }

  .page-faqs__section-description {
    font-size: 0.95rem;
  }

  .page-faqs__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-faqs__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
    padding-top: 0;
  }

  .page-faqs__faq-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-faqs__faq-section,
  .page-faqs__promotion-cta {
    padding: 40px 15px;
  }

  .page-faqs__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faqs__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-faqs__cta-button--secondary {
    width: 100%;
    max-width: 300px;
  }

  /* Ensure all images are responsive */
  .page-faqs img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Ensure all containers with images/videos/buttons are responsive */
  .page-faqs__hero-section,
  .page-faqs__faq-section,
  .page-faqs__promotion-cta,
  .page-faqs__container,
  .page-faqs__faq-item,
  .page-faqs__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-faqs__cta-button,
  .page-faqs__btn-primary,
  .page-faqs__btn-secondary,
  .page-faqs a[class*="button"],
  .page-faqs a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faqs__cta-buttons,
  .page-faqs__button-group,
  .page-faqs__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}