* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    line-height: 1.6;
}

nav {
    height: 80px;
    background: #003135;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
}

.nav-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #fff;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #9b9b9b;
}

.cookies {
    background: #003135;
    color: #fff;
    padding: 2rem;
    min-height: 100vh;
}

.cookies h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookies h2, .cookies h3 {
    margin-top: 1rem;
}

.cookies p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.cookies a {
    color: #fff;
    text-decoration: underline;
}

.site-footer {
    background: #003135;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

#footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

/* RESPONSIVITA */

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 1rem;
    }

    .nav-items {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .cookies {
        padding: 1rem;
    }

    #footer-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}
