.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
}

/* Ligne horizontale (desktop) */
.timeline::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ccc;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

/* Point */
.timeline-step::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #ee7f01;
    border-radius: 50%;
    border: 4px solid white;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 0 2px #ee7f01;
}

.timeline-content span {
    display: block;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
}

.timeline-content small {
    color: #666;
}

.timeline-step.active::before {
    background: green;
    box-shadow: 0 0 0 2px green;
}

/* ===================== */
/* 📱 VERSION MOBILE */
/* ===================== */
@media (max-width: 768px) {

    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }

    /* Ligne verticale */
    .timeline::before {
        top: 0;
        left: 10px;
        width: 4px;
        height: 100%;
        transform: none;
    }

    .timeline-step {
        text-align: left;
        margin-bottom: 30px;
        width: 100%;
    }

    .timeline-step::before {
        position: absolute;
        left: -2px;
        top: 0;
        margin: 0;
    }

    .timeline-content {
        margin-left: 30px;
    }
}

/* .timeline {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin: 40px 0;
      padding: 20px 0;

    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 40%;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #ccc;
      z-index: 1;
      transform: translateY(-50%);
    }

    .timeline-step {
      position: relative;
      z-index: 2;
      text-align: center;
      flex: 1;
    }

    .timeline-step::before {
      content: '';
      width: 20px;
      height: 20px;
      background: #ee7f01;
      border-radius: 50%;
      border: 4px solid white;
      display: block;
      margin: 0 auto 0;
      box-shadow: 0 0 0 2px #ee7f01;
    }

    .timeline-step span {
      display: block;
      font-weight: bold;
      color: #333;
      margin-top: 1%;
    } */
