.page-legal {
        background: #F8FAFC;
    }

    /* HERO */
    .hero-legal {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .hero-title-legal {
        font-family: 'Sora', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-subtitle-legal {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 15px;
    }

    .last-update {
        font-size: 0.95rem;
        opacity: 0.7;
    }

    /* LAYOUT */
    .legal-content {
        padding: 80px 0;
    }

    .legal-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 60px;
    }

    /* SIDEBAR */
    .legal-sidebar {
        position: sticky;
        top: 140px;
        height: fit-content;
    }

    .legal-nav {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    .legal-nav h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.2rem;
        color: #0A2463;
        margin-bottom: 20px;
    }

    .legal-nav ul {
        list-style: none;
        padding: 0;
    }

    .legal-nav li {
        margin-bottom: 12px;
    }

    .legal-nav a {
        color: #64748B;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s;
        display: block;
        padding: 8px 0;
    }

    .legal-nav a:hover {
        color: #3E92CC;
        padding-left: 5px;
    }

    /* MAIN CONTENT */
    .legal-main {
        background: white;
        border-radius: 20px;
        padding: 60px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    .legal-section {
        margin-bottom: 60px;
        padding-bottom: 40px;
        border-bottom: 2px solid #E2E8F0;
    }

    .legal-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .legal-section h2 {
        font-family: 'Sora', sans-serif;
        font-size: 2rem;
        color: #0A2463;
        margin-bottom: 25px;
        scroll-margin-top: 140px;
    }

    .legal-section h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.4rem;
        color: #1E293B;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .legal-section p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #64748B;
        margin-bottom: 20px;
    }

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

    .legal-section li {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #64748B;
        margin-bottom: 12px;
    }

    .legal-section a {
        color: #3E92CC;
        text-decoration: none;
        font-weight: 600;
    }

    .legal-section a:hover {
        text-decoration: underline;
    }

    .legal-section strong {
        color: #1E293B;
    }

    /* INFO BOX */
    .info-box {
        background: #F8FAFC;
        border-left: 4px solid #3E92CC;
        border-radius: 8px;
        padding: 25px;
        margin: 25px 0;
    }

    .info-box p {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .info-box p:last-child {
        margin-bottom: 0;
    }

    /* CONTACT SECTION */
    .contact-section {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 16px;
        padding: 40px;
        border: none;
    }

    .contact-methods {
        display: grid;
        gap: 25px;
        margin-top: 30px;
    }

    .contact-method {
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .contact-method strong {
        display: block;
        margin-bottom: 10px;
        color: #0A2463;
    }

    .contact-method a {
        color: #3E92CC;
        font-weight: 600;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .legal-layout {
            grid-template-columns: 1fr;
        }

        .legal-sidebar {
            position: static;
        }

        .legal-main {
            padding: 40px 30px;
        }
    }

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

        .legal-main {
            padding: 30px 20px;
        }

        .legal-section h2 {
            font-size: 1.5rem;
        }
    }
