/* ===== BASE ===== */
body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    color: #222;
    background-color: #f5f7fa;
}

/* ===== TIPOGRAFIA ===== */
h1 {
    font-size: 28px;
    color: #111;
    margin-bottom: 15px;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 15px;
}

ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* ===== LINK (coerenti col login) ===== */
a {
    color: #4ca1af;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* ===== CONTENITORE ===== */
.privacy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== TITOLO ===== */
.privacy-title {
    text-align: center;
    margin-bottom: 5px;
}

/* sottotitolo GDPR */
.privacy-container em {
    display: block;
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* ===== SEZIONI ===== */
.privacy-container h2 {
    border-left: 4px solid #4ca1af;
    padding-left: 10px;
}

/* ===== LISTE ===== */
.privacy-container ul {
    background: #f9fbfc;
    padding: 15px 20px;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer-links {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

    .footer-links a {
        display: inline-block;
        margin: 5px 10px;
    }

/* ===== SAAS LAYOUT (pronto ma non invasivo) ===== */
.privacy-layout {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 30px;
}

.privacy-sidebar {
    width: 220px;
    position: sticky;
    top: 30px;
    align-self: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

    .privacy-sidebar h3 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .privacy-sidebar a {
        display: block;
        padding: 6px 0;
        color: #2c3e50;
        font-size: 14px;
    }

        .privacy-sidebar a:hover {
            color: #4ca1af;
        }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .privacy-layout {
        flex-direction: column;
    }

    .privacy-sidebar {
        width: 100%;
        position: relative;
    }
}
.privacy-container h3 {
    margin-top: 20px;
    font-size: 16px;
    color: #2c3e50;
}