.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.hidden {
  display: none;
}

.faq-icon {
  transition: transform 0.3s ease-out;
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

.faq-question:hover .faq-icon {
  color: #2563eb;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
} 