/* Style général de la page */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

/* Conteneur principal */
.cgu-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: #111;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 112, 193, 0.2);
}

/* Titre principal */
.cgu-container h1 {
    color: #0070C1;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    border-bottom: 2px solid #0070C1;
    padding-bottom: 15px;
}

/* Sous-titres */
.cgu-container h2 {
    color: #0070C1;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Paragraphes */
.cgu-container p {
    margin-bottom: 20px;
    color: #ddd;
}

/* Liens */
.cgu-container a {
    color: #4db8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cgu-container a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Listes */
.cgu-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.cgu-container li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cgu-container {
        margin: 20px;
        padding: 25px;
    }

    .cgu-container h1 {
        font-size: 2rem;
    }

    .cgu-container h2 {
        font-size: 1.3rem;
    }
}


/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 180px;
    height: auto;
}