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

.page-faq__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

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

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

.page-faq__hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-faq__hero-button,
.page-faq__button,
.page-faq__support-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-faq__hero-button:hover,
.page-faq__button:hover,
.page-faq__support-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-faq__main-content {
  padding: 40px 20px;
  background-color: #08160F;
}

.page-faq__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: 2.2rem;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq__section-description {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__accordion {
  margin-top: 30px;
}

.page-faq__accordion-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq__accordion-header {
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  position: relative;
  user-select: none;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-faq__accordion-header.active {
  background-color: #0A4B2C;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-faq__accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #A7D9B8;
  background-color: #0A4B2C;
}

.page-faq__accordion-body.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-faq__accordion-body p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.page-faq__accordion-body .page-faq__button {
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-faq__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-faq__support-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}

.page-faq__support-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-faq__support-title {
  font-size: 1.8rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-faq__support-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-faq__hero-description {
    font-size: 0.95rem;
  }

  .page-faq__section-title {
    font-size: 1.8rem;
  }

  .page-faq__accordion-header {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-faq__accordion-header::after {
    right: 20px;
  }

  .page-faq__accordion-body {
    padding: 0 20px;
  }

  .page-faq__accordion-body.active {
    padding: 15px 20px;
  }

  .page-faq__image,
  .page-faq__support-image {
    max-width: 100%;
    height: auto;
  }

  .page-faq__main-content {
    padding: 20px 15px;
  }
  
  .page-faq__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: clamp(1.2rem, 8vw, 1.8rem);
  }

  .page-faq__hero-button,
  .page-faq__button,
  .page-faq__support-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-faq__section-title {
    font-size: 1.5rem;
  }

  .page-faq__support-title {
    font-size: 1.5rem;
  }
}