.faq {
  padding: 24px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.08), 0 10px 22px 0 rgba(0, 0, 0, 0.06), 0 40px 40px 0 rgba(0, 0, 0, 0.05), 0 91px 55px 0 rgba(0, 0, 0, 0.03), 0 162px 65px 0 rgba(0, 0, 0, 0.01), 0 252px 71px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.08), 0 10px 22px 0 rgba(0, 0, 0, 0.06), 0 40px 40px 0 rgba(0, 0, 0, 0.05), 0 91px 55px 0 rgba(0, 0, 0, 0.03), 0 162px 65px 0 rgba(0, 0, 0, 0.01), 0 252px 71px 0 rgba(0, 0, 0, 0);
}
.faq__unit {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.faq__unit:first-child {
  padding-top: 0;
}
.faq__unit:not(:last-child) {
  border-bottom: 1px solid #5b5b5b;
}
.faq__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
  cursor: pointer;
}
.faq__question {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.faq__chevron {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: #1a1e24;
  -webkit-transition-duration: 400ms;
  -o-transition-duration: 400ms;
  transition-duration: 400ms;
}
.faq__header.active .faq__chevron {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq__answer {
  display: none;
  padding: 24px;
  background-color: #f2f2f2;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .faq {
    padding: 15px 8px;
  }
  .faq__answer {
    padding: 10px;
  }
}