
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
}

/* Header */
.cgu-header {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.cgu-header h1 {
    color: #2d3436;
    font-size: 2rem;
    margin: 0;
}
/* La petite barre sous le titre*/
.header-line {
    width: 60px;
    height: 4px;
    background-color: #ff6233; /* Ton orange */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Conteneur principal */
.cgu-wrapper {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
}

.cgu-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Sections */
.cgu-section {
    margin-bottom: 30px;
}
/* la bordure a gauche la barre */
.cgu-section h3 {
    color: #ff6233; /* Ton orange */
    font-size: 1.25rem;
    margin-bottom: 12px;
    border-left: 5px solid #ff6233;
    padding-left: 15px;
}

.cgu-section p {
    color: #555;
    text-align: justify;
}

/* Liste de la section 2 */
.cgu-list {
    list-style: none;
    padding-left: 15px;
}

.cgu-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.cgu-list li::before {
    content: "\f058"; /* Icône check FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #3a3b3b; /* Bleu pour varier un peu */
}

/* Bouton */
.cgu-actions {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.btn-home {
    display: inline-block;
    padding: 12px 35px;
    background-color: #2d3436;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease; /* Rend l'animation fluide (0.3 secondes) */
}

.btn-home:hover {
    background-color: #ff6233;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 98, 51, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .cgu-content {
        padding: 20px;
    }
    
    .cgu-header h1 {
        font-size: 1.5rem;
    }
}