.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre cercle et label */
}

.step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    background-color: #fff;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step.active .step-circle {
    background-color: var(--main-color);
    color: #fff;
}

.line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--main-color);
    margin: 0 10px;
}