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

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

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-faq__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
}

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

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-faq__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-faq__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Green text for secondary button */
  border: 2px solid #2AD16F;
}

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

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

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

.page-faq__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #57E38D; /* Glow color for section titles */
}

.page-faq__text-block {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #F2FFF6;
  text-align: justify;
}

.page-faq__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 800px;
}

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

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #11271B; /* Card BG color */
  color: #F2FFF6;
  transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
  background-color: #1E3A2A; /* Slightly darker on hover */
}

.page-faq__faq-question::-webkit-details-marker, /* Hide default marker for Chrome */
.page-faq__faq-question::marker { /* Hide default marker for Firefox */
  display: none;
}

.page-faq__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Prevent text from interfering with summary click */
}

.page-faq__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
  pointer-events: none; /* Prevent toggle icon from interfering with summary click */
}

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

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

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

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

.page-faq__btn-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.page-faq__btn-link:hover {
  background-color: #1E3A2A;
}

.page-faq__download-section {
  background-color: #0A4B2C; /* Deep Green for download section */
  padding: 80px 0;
}

.page-faq__flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-faq__download-content {
  flex: 1;
  text-align: left;
}

.page-faq__download-image-wrapper {
  flex: 0 0 400px; /* Fixed width for image on desktop */
  max-width: 400px;
  height: auto;
  text-align: right;
}

.page-faq__download-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-faq__download-image-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

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

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

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

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

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

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

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

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

  .page-faq__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-faq__text-block {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

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

  .page-faq__faq-toggle {
    font-size: 1.3rem;
  }

  .page-faq__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  .page-faq__image-content {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-faq__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__download-section {
    padding: 50px 0;
  }

  .page-faq__flex-container {
    flex-direction: column-reverse; /* Image above text on mobile for download section */
    gap: 30px;
  }

  .page-faq__download-content {
    text-align: center;
  }

  .page-faq__download-image-wrapper {
    flex: none;
    max-width: 80%;
    margin: 0 auto;
  }

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

  /* Ensure all image containers are responsive */
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__hero-image-wrapper,
  .page-faq__download-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
  /* Specific override for sections that might not need padding if container already has it */
  .page-faq__section-spacing {
    padding-left: 0;
    padding-right: 0;
  }
  .page-faq__faq-section .page-faq__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video specific mobile styles, if any video were present */
  .page-faq video,
  .page-faq__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-faq__video-section,
  .page-faq__video-container,
  .page-faq__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-faq__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }
}