.step-header {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 0px;
    margin-bottom: 16px;
    background: var(--bs-white);
    border-radius: 8px;
    align-items: flex-start;
}

.step-indicator {
    flex-shrink: 0;
}

.step-circle {
    position: relative;
    width: 56px;
    height: 56px;
}

.step-progress {
    transform: rotate(0deg);
}

.step-progress-bar {
    transition: stroke-dashoffset 0.5s ease;
}

.step-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.step-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-success);
    position: absolute;
    top: 50%;
    left: 34%;
    transform: translate(-50%, -50%);
}

.step-separator {
    width: 14.764823038380339px;
    height: 0px;
    opacity: 1;
    border-width: 1px;
    border-style: solid;
    border-color: var(--bs-success);
    position: absolute;
    top: 57%;
    left: 54%;
    transform: translate(-50%, -50%) rotate(118.3deg);
}

.step-total {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-success);
    position: absolute;
    top: 55%;
    right: 16%;
    transform: translate(-50%, -50%);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #00797E;
    margin: 0 0 8px 0;
    line-height: 1;
}

.step-description {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .step-header {
        display: flex;
    }
}
