.privacy-section {
    padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
    min-height: 70vh;
}

.privacy-inner {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.page-back {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.page-back:hover { opacity: 1; }

.privacy-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.privacy-updated {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Stile del contenuto rich text (prodotto da CKEditor) */
.privacy-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.privacy-content h2, .privacy-content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
}

.privacy-content p { margin-bottom: 0.9rem; }

.privacy-content ul, .privacy-content ol {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

.privacy-content li { margin-bottom: 0.3rem; }

.privacy-content a {
    color: var(--accent-cyan);
    text-decoration: none;
}
.privacy-content a:hover { text-decoration: underline; }

.privacy-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.privacy-content strong { color: var(--text-primary); }
