.case-ol ol {
    list-style: none;
    counter-reset: main-counter; /* Ініціалізуємо лічильник */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-ol:last-child ol,
.case-ol:last-child ol ul{
    margin-bottom: 0;
}

.case-ol ol > li {
    counter-increment: main-counter;
    position: relative;
    padding-left: 35px;
    line-height: 1.55;
}

.case-ol ol > li::before {
    content: counter(main-counter);
    font-family: 'Roboto', sans-serif;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: #202029;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: #E8EDF5;
    border-radius: 100px;
    margin-right: 0;
}

/* Стилі для вкладеного списку */
.case-ol ol li ul li {
    padding-left: 20px;
    line-height: 1.55;
}

.case-ol ol li ul {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.case-ol ol li ul li::before {
    content: ''; /* Для вкладених списків немає лічильника */
    width: 10px;
    height: 10px;
    top: 10px;
    background: #A5A5B9;
    border-radius: 100px;
}

@media screen and (max-width: 1023.98px) {
    .case-ol ol > li::before {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    .case-ol ol > li {
        padding-left: 30px;
    }
}