body { font-family: 'Inter', sans-serif; }
.testimonial { display: none; transition: opacity 0.5s ease; }
.testimonial.active { display: block; }
.faq-content { max-height: 0; overflow: hidden; transition: all 0.4s ease; padding: 0 1rem; }
.faq-content.open { max-height: 300px; padding: 1rem; }
.faq-icon { transition: transform 0.4s ease; }
.faq-icon.rotate-180 { transform: rotate(180deg); }

.reveal-me {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-me.in-view {
  opacity: 1;
  transform: translateY(0);
}
