.pg-faq {
  background: var(--pg-gray-mist);
  padding: 52px 0 63px;
}
@media (min-width: 768px) {
  .pg-faq {
    padding: 72px 0 97px;
  }
}
.pg-faq__eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pg-green);
  text-align: center;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .pg-faq__eyebrow {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 48px;
  }
}
.pg-faq__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--pg-ink);
  text-align: center;
  margin: 0 0 41px;
}
@media (min-width: 768px) {
  .pg-faq__title {
    font-size: 42px;
    line-height: 53px;
    margin-bottom: 60px;
  }
}
.pg-faq__list {
  max-width: 333px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .pg-faq__list {
    max-width: 624px;
  }
}
@media (min-width: 1024px) {
  .pg-faq__list {
    max-width: 900px;
  }
}
.pg-faq__item {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pg-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 88px;
  padding: 18px 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: var(--pg-ink);
}
@media (min-width: 768px) {
  .pg-faq__question {
    padding: 20px 22px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .pg-faq__question {
    padding: 20px 32px;
  }
}
.pg-faq__num {
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--pg-green);
  color: var(--pg-white);
  font-weight: 700;
  font-size: 16px;
}
.pg-faq__question-text {
  flex: 1 1 auto;
}
.pg-faq__chevron {
  flex: 0 0 auto;
  width: 11px;
  height: 6px;
  color: var(--pg-green);
  transition: transform 0.2s;
}
@media (min-width: 768px) {
  .pg-faq__chevron {
    width: 13px;
    height: 8px;
  }
}
@media (min-width: 1024px) {
  .pg-faq__chevron {
    width: 18px;
    height: 8px;
  }
}
.pg-faq__question[aria-expanded=true] .pg-faq__chevron {
  transform: rotate(180deg);
}
.pg-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.32s ease, visibility 0s linear 0.32s;
}
.pg-faq__question[aria-expanded=true] + .pg-faq__answer {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.32s ease, visibility 0s linear 0s;
}
.pg-faq__answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 12px 0 60px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--pg-gray);
  transition: padding-bottom 0.32s ease;
}
@media (min-width: 768px) {
  .pg-faq__answer-inner {
    padding: 0 22px 0 90px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .pg-faq__answer-inner {
    padding: 0 32px 0 112px;
  }
}
.pg-faq__answer-inner p {
  margin: 0 0 10px;
}
.pg-faq__answer-inner p:last-child {
  margin-bottom: 0;
}
.pg-faq__question[aria-expanded=true] + .pg-faq__answer .pg-faq__answer-inner {
  padding-bottom: 22px;
}
@media (min-width: 768px) {
  .pg-faq__question[aria-expanded=true] + .pg-faq__answer .pg-faq__answer-inner {
    padding-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .pg-faq__question[aria-expanded=true] + .pg-faq__answer .pg-faq__answer-inner {
    padding-bottom: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pg-faq__answer, .pg-faq__question[aria-expanded=true] + .pg-faq__answer, .pg-faq__answer-inner {
    transition: none;
  }
  .pg-faq__chevron {
    transition: none;
  }
}
.pg-faq__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .pg-faq__actions {
    margin-top: 65px;
  }
}
.pg-faq__cta {
  width: 254px;
  max-width: 100%;
  height: 36px;
  padding: 0;
  border-radius: 0;
  background-color: var(--pg-green);
  color: var(--pg-white);
  font-size: 14px;
}
.pg-faq__cta:hover {
  opacity: 0.85;
}

html {
  scroll-behavior: smooth;
}

.pg-faqs-hero {
  position: relative;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 768px) {
  .pg-faqs-hero {
    height: 468px;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-hero {
    height: 800px;
  }
}
.pg-faqs-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-faqs-hero__greeting {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  background: var(--pg-green);
  color: var(--pg-white);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.4471px;
  top: 195px;
  min-height: 91px;
  width: min(292px, 100% - 32px);
  padding: 16px 20px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .pg-faqs-hero__greeting {
    top: 353px;
    width: 386px;
    padding: 20px 28px;
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-hero__greeting {
    top: 615px;
    min-height: 143px;
    width: 604px;
    padding: 24px 40px;
    font-size: 32px;
  }
}

.pg-faqs-search {
  background: var(--pg-green);
  padding: 40px 24px 48px;
}
@media (min-width: 768px) {
  .pg-faqs-search {
    padding: 48px 24px;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-search {
    padding: 56px 24px 64px;
  }
}
.pg-faqs-search__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--pg-white);
  text-align: center;
  margin: 0 0 24px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .pg-faqs-search__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-search__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.pg-faqs-search__buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-faqs-search__buttons {
    flex-direction: row;
    max-width: 476px;
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-search__buttons {
    flex-direction: row;
  }
}
.pg-faqs-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 230px;
  height: 57px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.pg-faqs-search__btn:hover {
  opacity: 0.85;
}
.pg-faqs-search__btn--solid {
  background: var(--pg-orange-deep);
  color: var(--pg-white);
}
.pg-faqs-search__btn--outline {
  background: var(--pg-white);
  color: var(--pg-green-deep);
}

.pg-faqs-lists {
  background: var(--pg-gray-mist);
  padding: 48px 0;
}
@media (min-width: 768px) {
  .pg-faqs-lists {
    padding: 72px 0;
  }
}
.pg-faqs-lists__list {
  margin: 0 0 56px;
  padding: 0 16px;
  scroll-margin-top: 120px;
}
@media (min-width: 768px) {
  .pg-faqs-lists__list {
    margin-bottom: 80px;
  }
}
.pg-faqs-lists__list:last-child {
  margin-bottom: 0;
}
.pg-faqs-lists__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--pg-ink);
  font-size: 20px;
  letter-spacing: 0.5377px;
  text-align: left;
  margin: 0 auto 8px;
  max-width: 1062px;
}
.pg-faqs-lists__desc, .pg-faqs-lists__soon {
  font-family: "Poppins", sans-serif;
  color: var(--pg-gray-dark);
  text-align: left;
  margin: 0 auto 24px;
  max-width: 1062px;
  font-size: 16px;
  letter-spacing: 0.5377px;
}
.pg-faqs-lists__desc {
  font-size: 14px;
  letter-spacing: 0.4894px;
}
@media (min-width: 768px) {
  .pg-faqs-lists__desc {
    font-size: 16px;
    letter-spacing: 0.5377px;
  }
}
.pg-faqs-lists .pg-faq__list {
  max-width: 1062px;
}
.pg-faqs-lists .pg-faq__item {
  box-shadow: none;
}
.pg-faqs-lists .pg-faq__question {
  font-weight: 600;
  font-size: 16px;
  min-height: 80px;
}
@media (min-width: 768px) {
  .pg-faqs-lists .pg-faq__question {
    font-size: 17px;
    min-height: 88px;
  }
}
@media (min-width: 768px) {
  .pg-faqs-lists .pg-faq__num {
    font-size: 14px;
  }
}
.pg-faqs-lists .pg-faq__chevron {
  width: 14px;
  height: 7.92px;
}
@media (min-width: 768px) {
  .pg-faqs-lists .pg-faq__chevron {
    width: 18.11px;
    height: 7.92px;
  }
}
.pg-faqs-lists .pg-faq__answer-inner {
  font-size: 16px;
  line-height: 26px;
  color: var(--pg-gray-dark);
  padding: 0 12px 0 56px;
}
@media (min-width: 768px) {
  .pg-faqs-lists .pg-faq__answer-inner {
    padding: 0 22px 0 74px;
  }
}
@media (min-width: 1024px) {
  .pg-faqs-lists .pg-faq__answer-inner {
    padding: 0 32px 0 84px;
  }
}

.pg-faqs-contact {
  background: var(--pg-cream);
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .pg-faqs-contact {
    padding: 96px 64px;
  }
}
.pg-faqs-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pg-faqs-contact__inner {
    width: 100%;
    max-width: 462px;
  }
}
.pg-faqs-contact__heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--pg-green-deep);
  text-align: center;
  margin: 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  .pg-faqs-contact__heading {
    font-size: 40px;
  }
}