.section-faq {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-faq__header {
  margin-bottom: 40px;
  text-align: center;
}

.section-faq__title {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: HarlowDuoSerifPlain, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #151515;
  text-align: center;
}

.section-faq__description {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #4dc3b5;
  text-align: center;
  text-transform: uppercase;
}

.section-faq__list {
  max-width: 1056px;
  margin: 0 auto;
}

.section-faq__item {
  padding-left: 16px;
  border-bottom: 1px solid #4dc3b5;
}

.section-faq__item-title {
  margin: 0;
  font: inherit;
}

.section-faq__term {
  margin: 0;
}

.section-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin-top: 13px;
  margin-bottom: 11px;
  font-family: HarlowDuoSerifPlain, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #363636;
  text-align: left;
  letter-spacing: 0.8px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.section-faq__question:focus-visible {
  outline: 2px solid #4dc3b5;
  outline-offset: 4px;
}

.section-faq__question-text {
  padding-right: 20px;
}

.section-faq__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #363636;
  background-color: transparent;
  border-radius: 50%;
}

.section-faq__icon svg {
  position: relative;
  top: -1px;
  left: -8px;
  width: 16px;
  height: 9px;
  transition: transform 0.3s;
  transform: rotate(180deg);
}

.section-faq__question[aria-expanded="true"] .section-faq__icon svg {
  transform: rotate(0);
}

.section-faq__answer {
  margin-top: -2px;
  margin-bottom: 16px;
  margin-left: 0;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: #363636;
  text-align: left;
  opacity: 1;
  transition:
    height 0.3s ease,
    opacity 0.2s ease;
}

.section-faq__answer[hidden] {
  display: none;
}

.section-faq__answer.is-collapsed {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
}

.section-faq__answer p {
  margin: 0 0 26px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #363636;
  text-align: left;
}

.section-faq__answer p:last-child {
  margin-bottom: 0;
}

.section-faq__answer a {
  position: relative;
  color: var(--Primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-faq__answer a:after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--Primary-teal-light);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.section-faq__answer a:focus-visible {
  outline: 2px solid #4dc3b5;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .section-faq__answer a:hover {
    color: var(--Primary-teal-light);
  }

  .section-faq__answer a:hover:after {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-faq__title {
    font-size: 26px;
  }

  .section-faq__description {
    font-size: 12px;
  }

  .section-faq__answer p {
    font-size: 14px;
  }

  .section-faq__question {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .section-faq {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-faq__title {
    font-size: 24px;
  }
}
