    .headersection h1 {
        font-family: 'Teko', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 0.05em;
    }

    #general_content h2 {
        font-family: 'Teko', sans-serif;
        font-size: 2.5rem;
        color: #000;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    #general_content h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #7db93a;
        margin-top: 5px;
    }

    #general_content h3 {
        font-family: 'Teko', sans-serif;
        font-size: 1.8rem;
        color: #7db93a;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    #general_content p {
        line-height: 1.6;
        margin-bottom: 20px;
        color: #444;
    }

    /* Restauration des listes dans le contenu WYSIWYG */
    #general_content ul {
        list-style-type: disc;
        margin-left: 30px;
        margin-bottom: 20px;
        color: #444;
    }

    #general_content ol {
        list-style-type: decimal;
        margin-left: 30px;
        margin-bottom: 20px;
        color: #444;
    }

    #general_content li {
        margin-bottom: 10px;
        line-height: 1.6;
        display: list-item;
        /* Force l'affichage en mode liste car parfois hérité en block */
    }