.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-faq__hero-section {
  position: relative;
  padding-top: 10px; /* Minimal top padding as body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  color: #F2FFF6;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-faq__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
}

.page-faq__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  color: #A7D9B8; /* Text Secondary */
}

.page-faq__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-faq__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-faq__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #F2FFF6; /* Text Main */
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-faq__faq-category-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #57E38D; /* Glow */
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 10px;
}

.page-faq__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-faq__faq-item:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  padding-right: 20px; /* Space for toggle icon */
}

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

.page-faq__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
  transform: rotate(45deg);
}

.page-faq__faq-answer {
  padding-top: 15px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  animation: fadeIn 0.3s ease-out;
}

.page-faq__faq-answer p {
  margin-bottom: 10px;
}

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

.page-faq__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #57E38D; /* Glow */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #57E38D; /* Glow */
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  margin-top: 20px;
}

.page-faq__btn-secondary:hover {
  background: #57E38D; /* Glow */
  color: #11271B; /* Card BG */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-faq__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  text-align: center;
  color: #F2FFF6;
}

.page-faq__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__cta-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-faq__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

.page-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

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

  .page-faq__faq-question {
    font-size: 1.15rem;
  }

  .page-faq__faq-answer {
    font-size: 1rem;
  }

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

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: 10px !important; /* Fixed top padding for mobile */
    padding-bottom: 20px;
  }

  .page-faq__hero-content {
    padding: 40px 15px;
    min-height: unset;
  }

  .page-faq__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-faq__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-faq__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-faq__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-faq__faq-category-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-faq__faq-item {
    padding: 15px 20px;
  }

  .page-faq__faq-question {
    font-size: 1.1rem;
    padding-right: 15px;
  }

  .page-faq__faq-answer {
    font-size: 0.95rem;
    padding-top: 10px;
  }

  /* General image responsiveness */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* Containers for images and content */
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-faq__cta-section {
    padding: 50px 15px;
  }

  .page-faq__cta-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-faq__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-faq__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}