.go-to-faqs {
        position: relative;
        padding-top: 2rem;
}
.go-to-faqs::before {
        content: "";
        display: block;
        width: 20%;
        height: 4px;
        background-color: #F47738;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
}
.go-to-faqs .call-to-action-images {
        display: grid;
        grid-template-columns: 1fr 9fr;
        width: 100%;
}

.go-to-faqs .call-to-action-images > a:nth-of-type(1) {
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column: 1;
}

.go-to-faqs .call-to-action-images > a:nth-of-type(2) {
        grid-column: 2;
        grid-row: 2;
        width: 25%;
}
.go-to-faqs .call-to-action-images > a:nth-of-type(2) img {
        max-width: 100%;
}
.call-to-action-content-2 {
    grid-column: 2;
    grid-row: 1;
}


@media (max-width: 800px) {
    .go-to-faqs a {
        display: flex;
        justify-content: center;
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .go-to-faqs .call-to-action-images {
            display: grid;
            grid-template-rows: 1fr 1fr 1fr;
            grid-template-columns: 1fr;
            width: 100%;
    }
    .go-to-faqs .call-to-action-images > a:nth-of-type(1) {
            grid-row: 1;
            grid-column: 1;
    }

    .go-to-faqs .call-to-action-images > a:nth-of-type(2) img {
        object-fit: contain;
    }
    
    .go-to-faqs .call-to-action-images > a:nth-of-type(2) {
            grid-column: 1;
            grid-row: 3;
            width: 100%;
    }
    .go-to-faqs .call-to-action-images > a:nth-of-type(2) img {
            max-width: 85%;
    }
    .call-to-action-content-2 {
        grid-column: 1;
        grid-row: 2;
    }
}