.faq {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .faq {
    padding: 40px 0;
  }
}
.faq .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .faq__content {
    flex-direction: column;
    align-items: center;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 730px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .faq__list {
    width: 100%;
  }
}
.faq__item {
  border-radius: 8px;
  border: 1px solid var(--Neutrals-Grey, #ddd);
  background: var(--Neutrals-Off-White, #fcfcfc);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}
.faq__question-text {
  color: var(--Neutrals-Mid-black, #2c2c2c);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.faq__question[aria-expanded=true] .faq__question-text {
  font-weight: 600;
}
.faq__question[aria-expanded=true] .faq__icon {
  background-image: url("../../images/control-minus-icon.svg");
}
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("../../images/control-plus-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.faq__answer {
  padding: 0 24px 16px;
}
.faq__answer[hidden] {
  display: none;
}
.faq__contact {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  background: #fff;
  width: 415px;
  max-width: 100%;
  align-self: flex-start;
}
@media (max-width: 767.98px) {
  .faq__contact {
    width: 100%;
    max-width: 415px;
  }
}
.faq__contact h5 {
  margin: 0;
}
.faq__contact p {
  margin: 0;
}
.faq__contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.faq__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  width: 100%;
}
.faq__contact-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.faq__contact-link--email::before {
  background-image: url("../../images/lucide_mail.svg");
}
.faq__contact-link--phone::before {
  background-image: url("../../images/lucide_phone.svg");
}
.faq__button-wrapper {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .faq__button-wrapper--top {
    display: none;
  }
}
.faq__button-wrapper--middle {
  margin: 24px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .faq__button-wrapper--bottom {
    display: none;
  }
}
.faq__button {
  align-self: center;
}