@layer base {
    body {
        font-family: 'Inter', sans-serif;
        scroll-behavior: smooth;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
    }
}

.hero-gradient {
    background: radial-gradient(circle at center, #86efac, transparent, transparent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
}

/* FAQ Styles */
.faq-content {
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active i[data-lucide="chevron-down"] {
    transform: rotate(180deg);
}
