body {
    background-color: var(--orage_background) !important;
    color: #333;
    margin: 0;
    padding: 0;
}

.cgu-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.cgu-hero {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--orage_light_blue), var(--orage_dark_blue));
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cgu-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cgu-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cgu-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.cgu-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.cgu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cgu-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orage_dark_blue);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orage_light_blue);
    display: inline-block;
}

.cgu-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem;
}

.cgu-section ul {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.cgu-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cgu-section p {
    margin: 0.75rem 0;
    text-align: justify;
}

.cgu-section a {
    color: var(--orage_light_blue);
    text-decoration: none;
    font-weight: 500;
}

.cgu-section a:hover {
    color: var(--orage_dark_blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cgu-title {
        font-size: 2rem;
    }

    .cgu-section-title {
        font-size: 1.5rem;
    }

    .cgu-content {
        padding: 1.5rem;
    }

    .cgu-hero {
        padding: 2rem 1rem;
    }
}
