div.contact_question {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f5f6f7;
    border-radius: 8px;
    text-align: center;
}

div.contact_question>h2 {
    width: fit-content;
}

div.contact_question p {
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    color: #444;
}

div.contact_question div.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* hide go to faq button into faq page */
.faq-main div.contact_question div.cta > a:nth-last-child(1) {
    display: none;
}

@media screen and (max-width: 768px) {
    div.contact_question p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    div.contact_question {
        padding: 1.5rem 1rem;
        text-align: unset;
    }

    div.contact_question div.cta>a {
        width: 100%;
        text-align: center;
    }
}
