/* Style général de la page CGV */
.cgv-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.644); /* Fond semi-transparent pour l'effet élégant */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Titres principaux */
.cgv-container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #4db2a9; /* Violet signature */
    margin-bottom: 20px;
}

/* Titres secondaires */
.cgv-container h2 {
    font-size: 1.8rem;
    color: #dd3d0f; /* Orange signature */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraphe et texte général */
.cgv-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Listes */
.cgv-container ul {
    list-style-type: none;
    padding-left: 0;
}

.cgv-container ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Liens */
.cgv-container a {
    color: #dd3d0f; /* Orange signature */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.cgv-container a:hover {
    color: #4db2a9; /* Violet */
}

/* Sections */
.cgv-container section {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Supprime la bordure pour le dernier élément */
.cgv-container section:last-child {
    border-bottom: none;
}

/* Responsive pour mobiles et tablettes */
@media (max-width: 768px) {
    .cgv-container {
        width: 90%;
        padding: 20px;
    }

    .cgv-container h1 {
        font-size: 2rem;
    }

    .cgv-container h2 {
        font-size: 1.5rem;
    }

    .cgv-container p,
    .cgv-container ul li {
        font-size: 1rem;
    }
}
