.section__services div {
    display: flex;
    flex-direction: column;
}

.section__services div h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
}

.section__services div h2:first-of-type {
    margin-top: var(--page-padding);
}

.section__services div h2:nth-of-type(odd) {
    align-self: end;
}

.section__services div h2 span {
    display: inline-block;
    width: 1em;
    height: 1em;
}

.section__services div h2 ul {
    margin-top: 0;
}

.section__services div h2 li {
    font-size: 1rem;
}

.section__services #brand-badge {
    width: 50%;
    max-width: 200px;
    margin: 3rem auto;
}

@media screen and (min-width: 768px) {
    .section__services div h2:nth-of-type(even) {
        align-self: unset;
        margin-left: calc(var(--page-padding) * 3);
    }

    .section__services div h2:nth-of-type(odd) {
        margin-right: calc(var(--page-padding) * 3);
    }
}

@media screen and (min-width: 1024px) {
    .section__services div h2:nth-of-type(even) {
        margin-left: 20vW;
    }

    .section__services div h2:nth-of-type(odd) {
        margin-right: 20vW;
    }
}