h2 {
    text-align: center;
    margin-bottom: 50px;
}

.section {
    display: flex;
    margin-bottom: 100px;
}

.section > * {
    width: 50%;
}

.section .image-container {
    display: flex;
    align-items: center;
}

.section img {
    width: 100%;
}

.text.left-text {
    margin-right: 75px;
}

.text.right-text {
    margin-left: 75px;
}

@media (max-width: 850px) {
    .section {
        flex-wrap: wrap;
        margin-bottom: 50px;
    }
    .section > * {
        width: 100%;
    }
    .text.left-text {
        margin-right: 0;
    }
    .text.right-text {
        margin-left: 0;
    }
    .text {
        order: 1;
        margin-bottom: 50px;
    }
    .image-container {
        order: 2;
    }
}