body {
    background-color: #FFFCF6;
}

/* FONTS */
@font-face {
    font-family: 'Barbra';
    src: url('../fonts/barbra-font/Barbra-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-display: swap;
} 

h1 {
    display: none;
}

.titre {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.titre h2 {
    display: inline;
    vertical-align: middle;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    color: #101211;
    margin-right: 10px;
}

.mentions-légales,
.politique-confidentialite,
.cgv {
    margin-bottom: 40px;
}

.contenu-mentions,
.contenu-politique,
.contenu-cgv {
    max-width: 900px; /* ou 1200px */
    padding: 0 20px;
    margin: 20px auto 40px auto; /* top auto bottom auto pour centrer horizontalement */
    line-height: 1.7;
}

.contenu-mentions h3,
.contenu-politique h3,
.contenu-cgv h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #49252F;
}

.contenu-mentions p,
.contenu-politique p,
.contenu-cgv p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.contenu-mentions a,
.contenu-politique a,
.contenu-cgv a {
    color: #49252F;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contenu-mentions a:hover,
.contenu-politique a:hover,
.contenu-cgv a:hover {
    text-decoration: underline;
    font-weight: bold;
}

.contenu-cgv ul {
    margin: 10px 0 20px 20px;
    padding-left: 20px;
}

.contenu-cgv li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #101211;
}

.contenu-cgv ul {
    list-style: none;
}

.contenu-cgv li::before {
    content: "•";
    color: #49252F;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* MEDIA QUERY */
/* Tablette */
@media screen and (max-width: 1024px) {
    .contenu-cgv,
    .contenu-mentions,
    .contenu-politique {
        max-width: 90%;
        padding: 0 30px; /* padding horizontal plus large sur tablette */
    }

    .contenu-cgv h3,
    .contenu-mentions h3,
    .contenu-politique h3 {
        font-size: 1.4rem;
    }

    .contenu-cgv p,
    .contenu-mentions p,
    .contenu-politique p {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .contenu-cgv,
    .contenu-mentions,
    .contenu-politique {
        max-width: 95%;
        padding: 0 20px;
    }

    .contenu-cgv h3,
    .contenu-mentions h3,
    .contenu-politique h3 {
        font-size: 1.25rem;
    }

    .contenu-cgv p,
    .contenu-mentions p,
    .contenu-politique p {
        font-size: 0.9rem;
    }

    .contenu-cgv ul,
    .contenu-mentions ul,
    .contenu-politique ul {
        margin-left: 15px;
        padding-left: 15px;
    }

    .contenu-cgv li::before,
    .contenu-mentions li::before,
    .contenu-politique li::before {
        width: 0.8em;
        margin-left: -0.8em;
    }
}

/* Petit mobile */
@media screen and (max-width: 480px) {
    .contenu-cgv,
    .contenu-mentions,
    .contenu-politique {
        max-width: 95%;
        padding: 0 15px; /* padding plus confortable */
    }

    .contenu-cgv h3,
    .contenu-mentions h3,
    .contenu-politique h3 {
        font-size: 1.1rem;
    }

    .contenu-cgv p,
    .contenu-mentions p,
    .contenu-politique p {
        font-size: 0.85rem;
    }

    .contenu-cgv ul,
    .contenu-mentions ul,
    .contenu-politique ul {
        margin-left: 12px;
        padding-left: 12px;
    }

    .contenu-cgv li::before,
    .contenu-mentions li::before,
    .contenu-politique li::before {
        width: 0.7em;
        margin-left: -0.7em;
    }
}