.mentions-légales {
    padding: 1rem;
    text-align: center;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;
    background-color: #0e0e0e;
    color: #f2f2f2;
    line-height: 1.6;

    /* CONTENEUR PRINCIPAL */
    .legal-container {
        max-width: 800px;
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    /* SECTIONS */
    section {
        margin-bottom: 2rem;

        h2 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #cccccc;
        }
    }

    p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }

    /* LIENS */
    a {
        color: #ffffff;
        text-decoration: underline;

        &:hover {
            opacity: 0.8;
        }
    }

    /* FOOTER */
    .legal-footer {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.85rem;
        text-align: center;
        color: #bbbbbb;
    }
}

/* RESPONSIVE */
@media (orientation: portrait) and (max-width: 768px),
       (orientation: landscape) and (max-height: 768px) {
    .mentions-légales {
        section {
            h2 {
                font-size: 1rem;
            }
        }

        .legal-container {
            padding: 1.5rem 1rem;
        }
    }
}