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

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

.hero {
    background-image: url('http://static.photos/office/1200x630/10');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero {
        padding: 2rem 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
}