.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
}

.page-faq__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-faq__hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E;
  letter-spacing: 0.5px;
}

.page-faq__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__hero-cta {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-faq__hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-faq__faq-section,
.page-faq__cta-section {
  padding: 50px 20px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
}

.page-faq__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #F2C14E;
}

.page-faq__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__accordion {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  overflow: hidden;
}

.page-faq__faq-item {
  border-bottom: 1px solid #3A2A12;
}

.page-faq__faq-item:last-child {
  border-bottom: none;
}

.page-faq__faq-question {
  width: 100%;
  background-color: #111111;
  color: #FFF6D6;
  padding: 20px 25px;
  text-align: left;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
  background-color: #1a1a1a;
}

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

.page-faq__faq-question[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__faq-answer {
  background-color: #0A0A0A;
  color: #E5E5E5;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-faq__faq-answer.page-faq__faq-answer--active {
  max-height: 500px; /* Adjust as needed for content */
  padding-bottom: 20px;
}

.page-faq__faq-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 211, 107, 0.3);
}

.page-faq__faq-button:hover {
  opacity: 0.9;
}

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

.page-faq__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-faq__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

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

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

  .page-faq__hero-cta,
  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

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

  .page-faq__faq-answer.page-faq__faq-answer--active {
    padding-bottom: 15px;
  }

  .page-faq__faq-button {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

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

  .page-faq__hero-image, .page-faq__faq-section img, .page-faq__cta-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-section,
  .page-faq__faq-section,
  .page-faq__cta-section {
    padding: 30px 15px;
  }

  .page-faq__hero-content {
    padding: 0 15px;
  }

  .page-faq__hero-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-faq__faq-question {
    font-size: 0.95rem;
  }
}

/* Ensure content images are not smaller than 200px and don't use filter */
.page-faq img {
  min-width: 200px;
  min-height: 200px;
  filter: none;
}

@media (max-width: 768px) {
  .page-faq img {
    max-width: 100% !important;
    height: auto !important;
  }
}