ul.two-column-list {
    padding: 0;
    list-style: none;
    width: 100%;
    text-align: center;
}

ul.two-column-list > li {
    width: 100%;
}

ul.two-column-list > li > * {
    padding: 10px 0;
}

@media screen and (max-width: 899px) {
    ul.two-column-list > li > *:nth-child(odd) {
        background: #EAEAEA;
    }
}

@media screen and (min-width: 900px) {
    ul.two-column-list > li {
        display: flex;
        align-items: center;
        column-gap: 40px;
    }

    ul.two-column-list > li > * {
        width: 50%;
    }

    ul.two-column-list > li:nth-child(odd) {
        background: #EAEAEA;
    }
}