.step-indicator-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
    transition: all 0.3s ease;
}
.step-indicator.active::before {
    background-color: #000;
    transition: all 0.3s ease;
}
.step-circle {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.step-label {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 60px;
}
.step-indicator.active .step-circle {
    background-color: #000;
    transition: all 0.3s ease;
}
.step-indicator.active .step-circle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.step-indicator.active .step-label {
    color: #000;
    font-weight: bold;
}

@media (max-width: 600px) {
    .step-label {
        font-size: 11px;
    }
}

@media (max-width: 339px) {
    .step-label { display: none; }
}

.step-content h2 {
    margin: auto;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: rgb(51, 51, 51);
}