/* FAQ Dynamic Styling */
.faq-container {
  transition: all 0.3s ease;
}

.faq-title {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-intro {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-section-title {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-question {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-answer {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Ensure proper contrast for accessibility */
.faq-question button:hover {
  opacity: 0.9;
}

/* Smooth transitions for accordion */
.faq-accordion-item {
  transition: all 0.3s ease;
}

/* Custom scrollbar for answers if needed */
.faq-answer::-webkit-scrollbar {
  width: 6px;
}

.faq-answer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.faq-answer::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.faq-answer::-webkit-scrollbar-thumb:hover {
  background: #555;
}
