/* Suppression de la ligne décorative courte sous les titres de section */
.section-title::after {
    display: none !important;
}

/* Ajustement de la ligne principale pour qu'elle soit bien centrée et visible */
.section-title::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent) !important;
    bottom: -5px !important;
}
