<style>
/* FAQ CTA Section */
.section--faq {
    padding-bottom: 0px;
}

.section--faq a {
    display: block;
    text-decoration: none;
}

.section--faq .container {
    background: #9a0630;
    padding: 50px;
    margin: auto;
    text-align: center;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.section--faq h3 {
    color: #fff;
    margin: 0;
}

.section--faq a:hover .container,
.section--faq a:focus .container {
    background: #bb1645;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    outline: 2px solid rgba(182, 140, 47, 0.5);
    outline-offset: 2px;
}

.section--faq a:hover h3 {
    color: #fff;
}

.faq-no-outline:focus {
    outline: 0px;
}


/* Process Steps */
.process-step {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.process-step__left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step__title .subheader {
    display: block;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: left;
}

.process-step__image img {
    display: block;
    width: 100%;
    height: auto;
}

.process-step:after {
    left: 50%;
}


/* Lists */
.list--none > li {
    margin-bottom: 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7em;
    font-family: 'Merriweather', serif;
}

.list--none > li:before {
    content: '\f1fc';
    font-family: 'FontAwesome';
    color: #9a0630;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 3px;
}


/* Mobile */
@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-step__title .subheader {
        font-size: 1.6rem;
    }
}
</style>