/* FAQ accordion styles */
.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-accordion-item.active .icon-rotate {
  transform: rotate(180deg);
}
