.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
  text-align: center;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative; /* Ensure it's in normal flow, not absolutely positioned under text */
  z-index: 1; /* Ensure image is below text if any layering occurs, though it's above in DOM */
}

.page-faq__hero-content {
  position: relative; /* Position relative to maintain flow and allow z-index */
  z-index: 2;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the bottom part of the hero image */
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%); /* Fade to background color */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

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

.page-faq__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-faq__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: transparent;
  color: #2AD16F; /* Deep Green, for contrast */
  border: 2px solid #2AD16F; /* Border */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-faq__btn-secondary:hover {
  background: #2AD16F; /* Deep Green */
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-faq__intro-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-faq__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-faq__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__faq-list-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-faq__faq-category {
  margin-bottom: 40px;
}

.page-faq__category-title {
  color: #2AD16F; /* Deep Green */
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #1E3A2A; /* Divider */
  padding-bottom: 15px;
}

.page-faq__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-faq__faq-question:hover {
  background-color: #1E3A2A; /* Divider for hover */
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-faq__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-faq__faq-item[open] .page-faq__faq-answer {
  max-height: 2000px; /* Arbitrarily large value for smooth transition */
}

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

.page-faq__faq-answer strong {
  color: #F2C14E; /* Gold */
}

.page-faq__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
}

.page-faq__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-faq__cta-section .page-faq__container {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 50px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__cta-section .page-faq__section-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-faq__cta-section .page-faq__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-faq__main-title {
    font-size: 2.2em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__category-title {
    font-size: 1.8em;
  }
}

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

  .page-faq__hero-section {
    padding-bottom: 40px;
  }

  .page-faq__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-faq__main-title {
    font-size: 1.8em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__category-title {
    font-size: 1.5em;
  }

  .page-faq__container {
    padding: 0 15px;
  }

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

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

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

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    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-faq__cta-section .page-faq__container {
    padding: 40px 20px;
  }

  /* Force responsive images */
  .page-faq img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__hero-section,
  .page-faq__intro-section,
  .page-faq__faq-list-section,
  .page-faq__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faq__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* No video section on this page, but keeping the rule for completeness if it were added */
  .page-faq__video-section { 
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 1.5em;
  }
  .page-faq__section-title {
    font-size: 1.5em;
  }
  .page-faq__category-title {
    font-size: 1.2em;
  }
}