.numbered-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.numbered-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}
.numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00b894;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}