body {
    background-color: lightgray;

    /* Réinitialisation des styles */

    * {

        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;

    }

    /* ---- NAVBAR ---- */

    .navbar {

        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 30px 40px;
        background-color: #333;
        color: white;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;

    }

    .navbar a:hover {

        color: chocolate;

    }

    .navbar a {

        color: white;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 5px;
        transition: color 0.75s;

    }

    .nav-links {

        list-style: none;
        display: flex;
        gap: 20px;

    }

    .nav-links a {

        color: white;
        text-decoration: none;
        font-size: 16px;
        margin: 0 80px;

    }

    .logo {

        text-align: center;

    }

    .logo img {

        height: 40px;

    }

    h2 {

        text-align: center;

    }
    /* ---- STYLES MENTIONS LÉGALES ---- */

    .mentions-legales {
        max-width: 1000px;
        margin: 120px auto 50px; /* Augmenter la marge en haut */
        padding: 20px;
        background: #f8f8f8;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mentions-legales h1 {
        text-align: center;
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
    }

    /* Liste ordonnée des mentions légales */

    .mentions-legales ol {
        list-style: decimal inside;
        padding: 0;
        margin-left: 20px;
    }

    .mentions-legales ol li {
        font-size: 18px;
        color: #555;
        margin-bottom: 15px;
        padding: 10px;
        background: #fff;
        border-left: 5px solid #8B4513; /* Marron chocolat */
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    /* Mise en valeur des titres */

    .mentions-legales ol li strong {
        color: #6B3E26; /* Brun foncé */
        font-weight: bold;
    }

    /* Style des paragraphes */

    .mentions-legales ol li p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
        margin-top: 5px;
    }

    /* Liens dans les mentions légales */

    .mentions-legales a {
        color: #8B4513;
        text-decoration: none;
        font-weight: bold;
    }

    .mentions-legales a:hover {
        text-decoration: underline;
    }

    /* Responsivité */
    @media (max-width: 768px) {
        .mentions-legales {
            padding: 15px;
            margin: 30px 10px;
        }

        .mentions-legales h1 {
            font-size: 24px;
        }

        .mentions-legales ol li {
            font-size: 16px;
            padding: 8px;
        }

        .mentions-legales ol li p {
            font-size: 14px;
        }
    }


    /* ---- FOOTER MODERNE ---- */

    .footer {
        background-color: #333333;
        color: white;
        padding: 25px 30px;
        position: relative; /* Empêche de recouvrir les actus */
        width: 100%;
        text-align: center;
    }

    .footer-links ul {
        list-style: none;
        display: flex;
        gap: 35px;
        padding: 0;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        padding: 15px 10px;
        border-radius: 5px;
        transition: color 0.75s;
    }

    .footer-links a:hover {
        color: chocolate;
    }
}