/* FAQ Page Styles */

/* Hero */
.faq-hero {
  padding-bottom: 0;
}

.faq-hero__box {
  background-color: var(--color-orange-light);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
}

.faq-hero__bg {
  width: 101%;
  height: 101%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq-hero__content {
  position: relative;
  z-index: 2;
}

.faq-hero__title {
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 20px;
}

.faq-hero__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.faq-hero__btn {
  border-color: #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-hero__btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Questions section */
.faq-questions {
  padding-top: 20px;
  padding-bottom: 40px;
}

.faq-questions .accordion-box {
  max-width: 100%;
}

/* Mobile: 375–767px (default mobile-first) */

@media (min-width: 500px) {
  .faq-hero__title {
    font-size: 34px;
  }
}

/* Tablet: 768–1919px */
@media (min-width: 768px) {
  .faq-hero__box {
    border-radius: 40px;
    padding: 50px;
    min-height: 494px;
  }

  .faq-hero__title {
    font-size: 52px;
    margin-bottom: 30px;
    max-width: 610px;
  }

  .faq-hero__text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 610px;
  }

  .faq-questions {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .faq-questions .accordion-box {
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop: 1920px */
@media (min-width: 1250px) {
  .faq-hero__box {
    padding: 60px 60px;
    min-height: 376px;
    display: flex;
    align-items: center;
  }

  .faq-hero__title {
    max-width: 1053px;
  }

  .faq-hero__text {
    max-width: 1053px;
    margin-bottom: 30px;
  }

  .faq-questions {
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .faq-questions .accordion-box {
    max-width: 1290px;
  }
}
