/* Custom styles that extend Tailwind */
body {
    scroll-behavior: smooth;
}

/* Add any custom animations or styles here */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}