.joinus-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.joinus-stepper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    text-align: center;
    color: #6c757d;
}

.joinus-stepper .circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.joinus-stepper .label {
    font-size: 0.9rem;
}

.joinus-stepper .line {
    height: 2px;
    width: 90px;
    background: #dee2e6;
    margin-bottom: 28px;
}

.joinus-stepper .step.active {
    color: #47b2e4;
}

.joinus-stepper .step.active .circle {
    border-color: #47b2e4;
    background: #47b2e4;
    color: #fff;
}

.joinus-stepper .step.completed {
    color: #198754;
}

.joinus-stepper .step.completed .circle {
    border-color: #198754;
    background: #198754;
    color: #fff;
}

@media (max-width: 768px) {
    .joinus-stepper {
        flex-direction: column;
        gap: 12px;
    }

    .joinus-stepper .line {
        width: 2px;
        height: 28px;
        margin-bottom: 0;
    }
}