/* ===== STILI PROFESSIONALI E CORPORATE ===== */
.legal-container {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.8;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.legal-meta {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 400;
}

.legal-nav {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 50px;
    top: 20px;
    z-index: 100;
}

.legal-nav h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px 20px;
}

.legal-nav li:before {
    content: none;
}

.legal-nav a {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
    border-bottom: 1px dotted #cbd5e0;
    transition: all 0.2s;
}

.legal-nav a:hover {
    color: #4299e1;
    border-bottom-color: #4299e1;
    padding-left: 5px;
}

.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: #1a202c;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #4299e1;
    font-weight: 800;
}

.legal-section h3 {
    font-size: 1.15rem;
    color: #2d3748;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1rem;
    color: #4a5568;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0 20px 25px;
    padding-left: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    position: relative;
}

.legal-section li:before {
    content: "—";
    color: #4299e1;
    font-weight: bold;
    position: absolute;
    left: -25px;
}

.legal-box {
    background: #f7fafc;
    border-left: 4px solid #4299e1;
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.legal-box.warning {
    background: #fffaf0;
    border-left-color: #dd6b20;
}

.legal-box.danger {
    background: #fff5f5;
    border-left-color: #c53030;
}

.legal-box.success {
    background: #f0fff4;
    border-left-color: #38a169;
}

.legal-box h4 {
    margin-top: 0;
    color: #1a202c;
    font-size: 1.1rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.legal-table th {
    background: #f7fafc;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: #2d3748;
}

.legal-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-table tr:hover {
    background: #f7fafc;
}

.article-number {
    display: inline-block;
    background: #4299e1;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}

.contact-block {
    background: #1a202c;
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-block h3 {
    color: white;
    margin-top: 0;
    font-size: 1.3rem;
}

.contact-block p {
    color: #cbd5e0;
    margin: 10px 0;
}

.contact-block a {
    color: #63b3ed;
    text-decoration: none;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-nav {
        position: relative;
        top: 0;
    }

    .legal-nav ul {
        grid-template-columns: 1fr;
    }

    .legal-box {
        padding: 20px;
    }
}

/* Stampa */
@media print {
    .nav-bar, .legal-nav, .site-footer, .menu-toggle {
        display: none;
    }

    .legal-container {
        margin: 0;
        max-width: 100%;
    }

    .legal-section {
        break-inside: avoid;
    }
}