
    @import url('../styles.css');
    /* ---- LEGAL PAGES STYLES ---- */
    .legal-page {
        margin: 0 auto;
        padding: 120px 24px 80px;
    }

    .legal-header {
        text-align: center;
        margin-bottom: 60px;
        padding-bottom: 40px;
        border-bottom: 2px solid rgba(0,5,11,0.08);
    }

    .legal-header h1 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .last-updated {
        font-size: 16px;
        color: rgba(0,5,11,0.6);
        font-weight: 500;
        background: rgba(255,216,117,0.2);
        padding: 8px 20px;
        border-radius: 20px;
        display: inline-block;
        margin-top: 12px;
    }

    .legal-content {
        background: white;
        border-radius: 16px;
        padding: 48px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.04);
    }

    .legal-section {
        margin-bottom: 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(0,5,11,0.08);
    }

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

    .legal-section h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-primary);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .legal-section h2::before {
        content: '';
        width: 4px;
        height: 24px;
        background: var(--color-primary);
        border-radius: 2px;
    }

    .legal-subsection {
        margin-bottom: 24px;
        padding-left: 20px;
    }

    .legal-subsection:last-child {
        margin-bottom: 0;
    }

    .legal-subsection h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .legal-content p {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(0,5,11,0.8);
        margin-bottom: 16px;
    }

    .legal-content ul {
        margin: 16px 0;
        padding-left: 24px;
    }

    .legal-content li {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(0,5,11,0.75);
        margin-bottom: 8px;
        position: relative;
        list-style-type: none;
        padding-left: 20px;
    }

    .legal-content li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
    }

    .contact-info {
        background: rgba(255,216,117,0.1);
        padding: 24px;
        border-radius: 12px;
        border-left: 4px solid var(--color-primary);
        margin-top: 16px;
    }

    .contact-info p {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .contact-info strong {
        color: var(--color-primary);
        font-weight: 600;
    }

    /* Responsive pour les pages légales */
    @media (max-width: 768px) {
        .legal-page {
            padding: 80px 16px 60px;
        }

        .legal-header h1 {
            font-size: 2rem;
        }

        .legal-content {
            padding: 32px 24px;
        }

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

        .legal-subsection {
            padding-left: 12px;
        }

        .legal-content li {
            padding-left: 16px;
        }
    }