/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header e navigazione */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Contenuto principale */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #2c3e50;
    color: white;
    margin-top: 3rem;
}

/* Responsive per schermi piccoli (smartphone) */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
}
