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

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

.container {
    max-width: 1200px;
}

/* Custom animations */
.hover\:scale-up:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}
