body {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
}

input, textarea {
  font-family: "Manrope", sans-serif;
}

button {
  font-family: "Manrope", sans-serif;
}

.faq-section {
  padding: 64px 16px;
}
.faq-section .faq-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-section .faq-container .text-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  flex: 1;
}
.faq-section .faq-container .text-content-wrapper .text-content__subtext {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #F46E15;
}
.faq-section .faq-container .text-content-wrapper .text-content__title {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #101828;
}
.faq-section .faq-container .text-content-wrapper .text-content__supporting-text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475467;
}
.faq-section .faq-container .faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item {
  display: flex;
  gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .question {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #101828;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .moving-elements {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item__text-container .moving-elements p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475467;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item .toggle-icon {
  width: 20px;
  height: 28px;
  vertical-align: middle;
}
.faq-section .faq-container .faq-accordion-wrapper .accordion-item:hover .moving-elements {
  display: block;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 64px 32px;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 96px 112px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .faq-section .faq-container {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
  .faq-section .faq-container .text-content-wrapper {
    gap: 8px;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__subtext {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__title {
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
  }
  .faq-section .faq-container .text-content-wrapper .text-content__supporting-text {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .faq-section .faq-container .faq-accordion-wrapper {
    min-width: 0;
  }
}