.faq-question-arrow {
  transition: transform 0.3s ease;
}

.active .faq-question-arrow {
  transform: rotate(90deg);
}

.faq-answer-wrapper {
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.active .faq-answer-wrapper {
  max-height: 300px;
  transition: max-height 0.3s ease-in;
}
