.section-steps {
    box-sizing: border-box;
    padding: 0 0 32px 0;
}

.steps-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.steps-group__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 32px;
    background: #fff;
    gap: 16px;
}

.steps-group__item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: 600;
    color: #fff;
    background: var(--bs-primary);
}


