/* FAQ Sectios Special Css Here */
.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* When active, reveal content smoothly */
.faq-content.active {
  opacity: 1;
  max-height: 1000px; /* large enough to show all content */
}

/* Plus icon rotates when active */
button.active .faq-icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
/* FAQ Sectios Special Css Here Ended */
