body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background-color: #0d6efd;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: #fff !important;
    margin-right: 1rem;
}

/* Hero Section */
#main {
    background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(13, 110, 253, 0.85)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

#main h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

#main p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sezioni */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Footer */
footer {
    background-color: #0d6efd;
    color: #fff;
    padding: 40px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}