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

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.page-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

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

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

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

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

.page-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

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

.page-faq__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-faq__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-faq__section {
  padding: 60px 20px;
  background-color: #08160F;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-faq__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__sub-section-title {
  font-size: 2rem;
  color: #2AD16F; /* Main Green */
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 2px solid #1E3A2A; /* Divider */
  padding-bottom: 15px;
  text-align: center;
}

.page-faq__faq-list {
  background-color: #08160F;
}

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

.page-faq__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #11271B;
  font-weight: bold;
  font-size: 1.2rem;
  color: #F2FFF6;
}

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

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

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

.page-faq__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
  color: #F2C14E;
}

.page-faq__faq-answer {
  padding: 20px 25px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-faq__cta-bottom {
  padding: 80px 20px;
  text-align: center;
  background-color: #08160F;
}

.page-faq__cta-bottom .page-faq__dark-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 30px;
  border-radius: 15px;
  border: 1px solid #2E7A4E; /* Border */
  position: relative;
  overflow: hidden;
}

.page-faq__cta-bottom .page-faq__section-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
}

.page-faq__cta-bottom .page-faq__description {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8;
}

.page-faq__cta-bottom .page-faq__cta-buttons {
  margin-top: 30px;
}

.page-faq__cta-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-faq__section-title {
    font-size: 2.2rem;
  }
  .page-faq__sub-section-title {
    font-size: 1.8rem;
  }
  .page-faq__faq-item summary {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 10px 15px 40px;
  }
  .page-faq__section {
    padding: 40px 15px;
  }
  .page-faq__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-faq__description {
    font-size: 1rem;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__section-title {
    font-size: 2rem;
  }
  .page-faq__sub-section-title {
    font-size: 1.5rem;
  }
  .page-faq__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-faq__faq-answer {
    padding: 15px 20px 20px;
    font-size: 0.95rem;
  }
  .page-faq img,
  .page-faq__faq-image,
  .page-faq__hero-image,
  .page-faq__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__cta-bottom .page-faq__dark-section,
  .page-faq__hero-section,
  .page-faq__hero-image-wrapper,
  .page-faq__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq__cta-bottom .page-faq__dark-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-faq__section-title {
    font-size: 1.8rem;
  }
  .page-faq__sub-section-title {
    font-size: 1.3rem;
  }
  .page-faq__faq-item summary {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  .page-faq__faq-toggle {
    font-size: 1.5rem;
  }
  .page-faq__faq-answer {
    padding: 12px 15px 15px;
    font-size: 0.9rem;
  }
}