.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.step.already-passed .step-circle {
    background-color: rgba(255, 255, 255, 0.40);
    color: #58151c;
    border-color: rgba(255, 255, 255, 0.40);
    border-width: 2px;
    border-style: solid;
}

.step.active .step-circle {
    background-color: var(--link-default-color);
    color: #000;
    border: none;
}

.step-bar {
    width: 100px;
    height: 4px;
    background-color: #f8d7da;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.step-bar.already-passed {
    background-color: #f8d7da;
    border-color: #f1aeb5;
    border-width: 2px;
    border-style: solid;
}

.step.already-passed .step-title {
    color: rgba(255, 255, 255, 0.75);
}

.step.active .step-title {
    color: var(--link-default-color);
}