.step-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #9bc45a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9bc45a;
    font-weight: 600;
}

.step.active {
    background: #9bc45a;
    color: #fff;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}
