#approach h2{
    background-image: url(/assets/img/approach-h2.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% auto;
}

.faq-item {
    position: relative;
    margin-top: 3.875rem;
    padding: 3.75rem 5rem;
    background: #F4F6F4;
    border-radius: 2.125rem;
    display: flex;
    gap: 1.25rem;
}

.faq-item:last-child{
    margin-bottom: 1.5rem;
}

.faq-item span {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    color: #8C8C8C;
    margin-right: 4.375rem;
}

.faq-item h3 {
    flex-grow: 1;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    margin: 0;
}

.faq-img {
    width: 39.4375rem;
    height: 18.3125rem;
    border-radius: 1.875rem;
    flex-shrink: 0;
    overflow: hidden;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .faq-item{
        padding: 2rem 3rem;
    }
    .faq-img{
        width: 30%;
        height: 100%;
    }
}

@media (max-width: 620px) {
    .faq-item{
        flex-direction: column;
    }
    .faq-img{
        width: 100%;
    }
}