/* Styles pour les listes à puces du parcours */
.timeline-desc-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.timeline-desc-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-desc-list li:before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.timeline-desc-list li:hover {
    color: #ffffff;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .timeline-desc-list {
        font-size: 13px;
    }
    
    .timeline-desc-list li {
        padding-left: 18px;
        margin-bottom: 6px;
    }
}

