body {
    background-color: lightgray;
    margin: 0;
    padding: 0;
}

/* 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;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0px 80px;
}
.logo {
    text-align: center;
}
.logo img {
    height: 40px;
}

h2 {
    text-align: center;
}

.navbar a:hover {
    color: chocolate;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.75s;
}


/* ---- STYLES DES CGV ---- */
.cgv {
    max-width: 1000px;
    margin: 120px auto 50px; /* Espacement avec la navbar */
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cgv h1 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
/* Liste ordonnée des CGV */
.cgv ol {
    list-style: decimal inside;
    padding: 0;
    margin-left: 20px;
}
.cgv 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 */
.cgv ol li strong {
    color: #6B3E26; /* Brun foncé */
    font-weight: bold;
}
/* Style des paragraphes */
.cgv ol li p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-top: 5px;
}
/* Liens dans les CGV */
.cgv a {
    color: #8B4513;
    text-decoration: none;
    font-weight: bold;
}
.cgv a:hover {
    text-decoration: underline;
}
/* Responsivité */
@media (max-width: 768px) {
    .cgv {
        padding: 15px;
        margin: 30px 10px;
    }
    .cgv h1 {
        font-size: 24px;
    }
    .cgv ol li {
        font-size: 16px;
        padding: 8px;
    }
    .cgv 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;
}