/* Custom FAQ Styles extracted from inline CSS */

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.font-heading {
  font-family: 'Montserrat', sans-serif !important;
}
/* Glass panel styling for frosted card backgrounds */
.glass-panel {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
/* Fade‑in animation for sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}