/* Généralités pour les CGS */
.cgs-content {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 2rem;
    background-color: #f4f4f4;
    border-radius: 8px; -webkit-border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    font-weight: bold;
}

h2 {
    margin-top: 2rem;
}

p, ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

ul {
    margin-left: 20px;
}

a {
    color: #3b9e8f; /* Adapté au logo */
    text-decoration: none; -webkit-text-decoration: none;
}

a:hover {
    text-decoration: underline; -webkit-text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cgs-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cgs-content {
        padding: 1rem;
    }

    p, ul {
        font-size: 0.9rem;
    }
}
