.page-faq {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Small padding at bottom to avoid sticking to footer */
}

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

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

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

.page-faq__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.page-faq__faq-section {
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.page-faq__section-title {
  color: #F2FFF6;
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

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

.page-faq__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__faq-item[open] {
  background-color: #0A4B2C;
  border-color: #57E38D;
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.2);
}

.page-faq__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

.page-faq__faq-question::marker {
  content: '';
}

.page-faq__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #57E38D;
  transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__faq-answer {
  padding-top: 15px;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A;
  margin-top: 15px;
}

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

.page-faq__cta-section {
  background-color: #0A4B2C;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #2E7A4E;
  border-bottom: 2px solid #2E7A4E;
  margin-top: 50px;
}

.page-faq__cta-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.page-faq__cta-title {
  color: #F2C14E;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-faq__cta-description {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-faq__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: 2.8em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    margin-bottom: 30px;
  }
  .page-faq__hero-image-wrapper {
    margin-bottom: 15px;
  }
  .page-faq__main-title {
    font-size: 2.2em;
    margin-bottom: 10px;
  }
  .page-faq__description {
    font-size: 1em;
  }
  .page-faq__faq-section {
    margin-bottom: 40px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-faq__faq-question {
    font-size: 1.1em;
  }
  .page-faq__faq-answer {
    font-size: 0.95em;
  }
  .page-faq__cta-section {
    padding: 40px 15px;
    margin-top: 40px;
  }
  .page-faq__cta-title {
    font-size: 1.6em;
  }
  .page-faq__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq__hero-section img,
  .page-faq__faq-section img,
  .page-faq__cta-section img { /* Apply to all images within main content */
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__main-title {
    font-size: 1.8em;
  }
  .page-faq__section-title {
    font-size: 1.6em;
  }
  .page-faq__faq-question {
    font-size: 1em;
  }
  .page-faq__cta-title {
    font-size: 1.4em;
  }
}