
.faq-section {
    background: linear-gradient(to bottom, #FE4F39, white 35%);
    padding: 100px 65px 0 65px;

}

.faq-section > div:nth-child(1) {
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    max-width: 1050px;
}

.faq-section img {
   width: 400px;
   height: auto;
   object-fit: contain;
   margin-top: -70px;
}

.faq-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-section h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

.faq-section p {
    margin-bottom: 30px;
}

#faqAccordion {
    max-width: 1000px;
    margin: auto;
    margin-bottom: 150px;
}

.faq-accordion .accordion-button {
    background-color: white;
    color: #212529;
    font-weight: 500;
}

.faq-accordion .accordion-button::after {
    filter: none;
    color: #212529;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #4D6582;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(77, 101, 130, 0.4);
}

.accordion-button:focus {

    box-shadow: 0 0 0 0.25rem rgba(77, 101, 130, 0.4);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: white;
    filter: invert(100%);
}

.faq-accordion .accordion-body {
    background-color: white;
    color: #212529;
}

.accordion-button::after {
    color: #212529; /* dark */
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon); /* use the default (dark) arrow */
    filter: brightness(0) invert(1); /* turn it white */
}

/* ========== MEDIA QUERIES ========== */


@media (max-width: 950px) {
    .faq-section img {
        width: 300px;

    }
}

@media (max-width: 650px) {
    .faq-section > div:nth-child(1) {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .faq-section img {
        margin-top: 20px;
    }
 }

@media (max-width: 550px) {
    .faq-section {
        background: linear-gradient(to bottom, #FE4F39, white 35%);
        padding: 100px 30px 0 30px;
    }
}