html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333;
}
.nav-link {
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: #4F46E5;
}
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/img/office.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 80px;
}
