h2 {
    font-family: GothamBold, Arial, sans-serif;
    margin: 0 auto 30px 0;
    text-align: center;
    font-size: 30px;
}
.wrapper-white h2 {
    color: #a20101;
}
ul.styled-list {
    list-style: none;
    padding-left: 15px;
}

.double-col {
    column-count: 2;
    margin: 30px auto;
    max-width: 400px;
}

.styled-list li {
    font-family: GothamBookRegular, Arial, sans-serif;
    font-size: 13pt;
    line-height: 21px;
    margin: 5px 0;
    text-align: justify;
}

.compare-structure {
    background-color: #e6e6e6;
    padding: 20px 35px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: auto;
    max-width: 670px;
}

.compare-structure .structure-element h3 {
    font-family: GothamBold, Arial, sans-serif;
    margin: 0 auto 15px 0;
    text-align: center;
    font-size: 24px;
    color: black;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    background-color: #f2f2f2;
    font-size: 13pt;
    color: black;
    padding: 10px;
    border-radius: 10px;
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.step::before {
    content: "\00a0";
    border: 30px solid transparent;
    border-top-color: white;
    position: absolute;
    border-bottom-width: 0;
    border-top-width: 38px;
    font-size: 0;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -8px);
    z-index: 999;
}
.step::after {
    content: "\00a0";
    border: 26px solid transparent;
    border-top-width: 34px;
    border-top-color: #7f0202;
    position: absolute;
    border-bottom-width: 0;
    font-size: 0;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -6px);
    z-index: 999;
}
.steps .step:last-of-type::before, .steps .step:last-of-type::after {
    display: none;
}
.step_head {
    background-color: #7f0202;
    color: white;
    display: flex;
    align-items: center;
    padding: 5px;
}

.stem_num {
    background-color: #5b0000;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 15px;
    margin-right: 20px;
}

.step-description {
    margin-top: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .styled-list li {
        font-size: 11pt;
        line-height: 18px;
        margin: 3px 0;
    }
    .compare-structure .structure-element h3 {
        font-size: 20px;
    }
    .compare-structure {
        padding: 15px 20px;
    }
}
@media (max-width: 620px) {
    .compare-structure {
        flex-direction: column;
        align-items: center;
        max-width: 420px;
    }
    .structure-element img {
        display: block;
        max-width: 100%;
    }
}
@media (max-width: 425px) {
    .step {
        max-width: 320px;
        font-size: 11pt;
    }
}