/* =====================================================
   style-legal.css — Base partagée : pages texte légal
   Utilisé par : mentions-legales.html, politique-confidentialite.html
   ===================================================== */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.8;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    color: #2c3e50;
}

h1 {
    color: #1f4e79;
    font-size: 28px;
    margin-bottom: 30px;
}

h2 {
    color: #1f4e79;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #27ae60;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Responsive mobile --- */
@media only screen and (max-width: 600px) {

    body {
        margin: 20px auto;
        padding: 0 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 17px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    p {
        margin-bottom: 12px;
    }
}
