.steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4em;
}
.step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #888;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.2s;
}
.step.active {
    background: #1976d2;
    color: #fff;
    border: 2px solid #1976d2;
    box-shadow: 0 0 0 2px #90caf9;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
}

.introtext {
    margin-top: 2rem;
}