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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Custom components */
.card-hover:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}