.container article {
    background: #ffffff;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.container article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Titre principal de la page */
#main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

#main-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #10b981 100%);
    border-radius: 2px;
}

/* Description introductive */
.container>p:first-of-type {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-style: italic;
}

/* Titres des sections (h2) */
.container article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.container article h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Paragraphes dans les articles */
.container article p {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Liens dans le contenu */
.container article a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.container article a:hover,
.container article a:focus {
    color: #10b981;
}

.container article a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e40af 0%, #10b981 100%);
    transition: width 0.3s ease;
}

.container article a:hover::after,
.container article a:focus::after {
    width: 100%;
}

/* Alternance des couleurs de bordure pour plus de dynamisme */
.container article:nth-child(odd) {
    border-left-color: #1e40af;
}

.container article:nth-child(even) {
    border-left-color: #10b981;
}

/* Mise en valeur des sections importantes */
.container article:first-child,
.container article:last-child {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #fbbf24;
}

.container article:first-child h2,
.container article:last-child h2 {
    color: #d97706;
}

/* Style pour les listes si nécessaire */
.container article ul,
.container article ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.container article li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    #cgv-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .container>p:first-of-type {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .container article {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .container article h2 {
        font-size: 1.3rem;
    }

    .container article p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #cgv-heading {
        font-size: 1.8rem;
    }

    .container article {
        padding: 1.2rem;
        border-radius: 8px;
    }

    .container article h2 {
        font-size: 1.2rem;
    }
}