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

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

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom shadow */
.shadow-custom {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}