@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #00AEEF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0A2342;
}

/* Base resets handled by Tailwind, adding utility overrides */
.faq-content {
    display: none;
}
.faq-content.open {
    display: block;
}