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

.page-faq__section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.page-faq__section--spacing {
  padding: 60px 0;
}

.page-faq__section--alt-bg {
  background-color: #11271B; /* Card BG */
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-faq__container--center {
  text-align: center;
}

.page-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-faq__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-faq__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

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

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-faq__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-faq__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-faq__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
  border-color: #F2FFF6; /* Text Main */
  color: #F2FFF6; /* Text Main */
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
  transition: all 0.3s ease;
}

.page-faq__faq-item:hover {
  border-color: #57E38D; /* Glow */
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

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

.page-faq__faq-qtext {
  flex-grow: 1;
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  width: 25px;
  text-align: center;
}

.page-faq__faq-item[open] .page-faq__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

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

.page-faq__faq-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-faq__btn-inline {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background-color: #22C768; /* Auxiliary Color */
  color: #08160F; /* Background - ensure contrast */
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-inline:hover {
  background-color: #F2C14E; /* Gold */
  color: #08160F; /* Background */
}

.page-faq__section--contact .page-faq__container--flex {
  justify-content: space-between;
  align-items: flex-start;
}

.page-faq__contact-content {
  flex: 1;
  max-width: 60%;
}

.page-faq__contact-content .page-faq__section-title {
  text-align: left;
}

.page-faq__contact-content p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-faq__contact-content .page-faq__btn-primary,
.page-faq__contact-content .page-faq__btn-secondary {
  margin-right: 15px;
  margin-bottom: 15px;
}

.page-faq__contact-image-wrapper {
  flex: 0 0 35%;
  max-width: 35%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.page-faq__contact-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-faq__section--cta-final .page-faq__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    max-width: 700px;
  }

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

  .page-faq__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-faq__faq-answer {
    padding: 0 20px 18px;
  }

  .page-faq__contact-content {
    max-width: 55%;
  }

  .page-faq__contact-image-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (max-width: 768px) {
  .page-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-faq__section--spacing {
    padding: 40px 0;
  }

  .page-faq__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-faq__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-faq__description {
    font-size: 1em;
  }

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

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-faq__faq-question {
    font-size: 1em;
    padding: 15px 15px;
  }

  .page-faq__faq-toggle {
    font-size: 1.2em;
    width: 20px;
  }

  .page-faq__faq-answer {
    padding: 0 15px 15px;
  }

  .page-faq__container,
  .page-faq__hero-section,
  .page-faq__section,
  .page-faq__faq-list,
  .page-faq__faq-item,
  .page-faq__hero-image-wrapper,
  .page-faq__contact-content,
  .page-faq__contact-image-wrapper,
  .page-faq__cta-buttons,
  .page-faq__contact-content .page-faq__btn-primary,
  .page-faq__contact-content .page-faq__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq__hero-image,
  .page-faq__faq-image,
  .page-faq__contact-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-faq__section--contact .page-faq__container--flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .page-faq__contact-content,
  .page-faq__contact-image-wrapper {
    max-width: 100%;
    width: 100%;
    flex: none;
  }

  .page-faq__contact-content .page-faq__section-title {
    text-align: center;
  }

  .page-faq__contact-content .page-faq__cta-buttons {
    justify-content: center;
  }

  .page-faq__btn-inline {
    width: auto;
    max-width: 100%;
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

/* Ensure content images are not too small */
.page-faq img:not(.page-faq__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast Fixes */
.page-faq p, .page-faq li, .page-faq__description {
  color: #A7D9B8; /* Text Secondary - good contrast on dark background */
}

.page-faq__section-title, .page-faq__main-title, .page-faq__faq-question {
  color: #F2FFF6; /* Text Main - good contrast on dark background */
}

.page-faq__btn-inline {
  background-color: #22C768; /* Auxiliary Color */
  color: #08160F; /* Background - ensures strong contrast */
}

.page-faq__btn-inline:hover {
  background-color: #F2C14E; /* Gold */
  color: #08160F; /* Background - ensures strong contrast */
}