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

.page-faq__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F2FFF6;
  text-align: center;
  padding-bottom: 50px; /* Space for content below image */
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 500px; /* Limit height for hero image */
}

.page-faq__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(17, 40, 27, 0.7); /* Deep Green with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-faq__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
}

.page-faq__description {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-faq__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-faq__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-faq__section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  color: #F2FFF6; /* Text Main */
  user-select: none;
  position: relative;
  list-style: none; /* For details/summary */
}

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

.page-faq__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

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

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

.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-faq__faq-answer p {
  margin: 0;
  padding-top: 10px;
}

.page-faq__cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  margin-top: 60px;
  padding: 30px;
  gap: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-faq__cta-image {
  flex: 1 1 40%;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-faq__cta-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-faq__cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-faq__cta-text {
  font-size: clamp(16px, 1.9vw, 18px);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-faq__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-faq__main-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }
  .page-faq__description {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-faq__section-title {
    margin-top: 40px;
    margin-bottom: 25px;
  }
  .page-faq__faq-question {
    padding: 18px 20px;
    font-size: clamp(15px, 1.9vw, 19px);
  }
  .page-faq__faq-answer {
    padding: 0 20px 18px;
    font-size: clamp(14px, 1.7vw, 17px);
  }
  .page-faq__cta-section {
    padding: 25px;
    gap: 20px;
  }
  .page-faq__cta-title {
    font-size: clamp(20px, 2.8vw, 28px);
  }
  .page-faq__cta-text {
    font-size: clamp(15px, 1.8vw, 17px);
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-bottom: 30px;
  }
  .page-faq__hero-content {
    position: static;
    transform: none;
    margin-top: 20px;
    background: rgba(17, 40, 27, 0.9); /* Slightly less transparent on mobile */
    width: calc(100% - 30px) !important; /* Force full width with padding */
    padding: 20px 15px !important;
  }
  .page-faq__hero-image {
    max-height: 300px;
  }
  .page-faq__main-title {
    font-size: 28px !important;
    margin-bottom: 10px;
  }
  .page-faq__description {
    font-size: 16px !important;
    margin-bottom: 20px;
  }
  .page-faq__hero-button,
  .page-faq__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
  }
  
  .page-faq__content-area {
    padding: 20px 15px;
  }
  .page-faq__section-title {
    font-size: 26px !important;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-faq__faq-question {
    padding: 15px 18px;
    font-size: 16px !important;
  }
  .page-faq__faq-answer {
    padding: 0 18px 15px;
    font-size: 15px !important;
  }
  .page-faq__cta-section {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }
  .page-faq__cta-image {
    width: 100% !important;
    min-width: unset;
  }
  .page-faq__cta-content {
    text-align: center;
    width: 100% !important;
    min-width: unset;
  }
  .page-faq__cta-title {
    font-size: 24px !important;
  }
  .page-faq__cta-text {
    font-size: 15px !important;
  }
  
  /* Mobile specific image, video, and container rules */
  .page-faq img,
  .page-faq video,
  .page-faq__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__video-section,
  .page-faq__video-container,
  .page-faq__video-wrapper,
  .page-faq__cta-buttons,
  .page-faq__button-group,
  .page-faq__btn-container {
    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;
  }
  
  /* Flex wrap for multiple buttons */
  .page-faq__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 24px !important;
  }
  .page-faq__description {
    font-size: 14px !important;
  }
  .page-faq__hero-button,
  .page-faq__cta-button {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
  .page-faq__section-title {
    font-size: 22px !important;
  }
  .page-faq__faq-question {
    font-size: 15px !important;
  }
  .page-faq__faq-answer {
    font-size: 14px !important;
  }
  .page-faq__cta-title {
    font-size: 20px !important;
  }
  .page-faq__cta-text {
    font-size: 14px !important;
  }
}