/* Styles pour les Tracks */
.track {
    margin-bottom: 40px;
}

.track h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #54BEE3; /* Ligne sous le titre */
    padding-bottom: 5px;
}

.track ul {
    list-style-type: disc; /* Puces par défaut */
    padding-left: 20px;
    margin-top: 10px;
}

.track li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.track li strong {
    font-weight: bold;
    color: #54BEE3;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }

    .track h3 {
        font-size: 1.2rem;
    }

    .track ul {
        padding-left: 15px;
    }
}