.faqTeam {
    display: flex;
    width: 85%;
    max-width: 85%;
    margin: 10px auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background: #9B795D;
    background: linear-gradient(350deg, rgba(155, 121, 93, 0.9) 0%, rgba(194, 174, 151, 0.6) 100%);
    padding: 10px;
    gap: 30px;
    border-radius: 10px;
  
}

.faqTeam svg {
    position: absolute;
    top: 0;
    right: 0;
    width:100%;
    z-index: -2;
    opacity: 0.1;

}

.faqTeam section {
    z-index: 1;
}


@media (max-width: 900px) {
    .faqTeam {
        flex-direction: column;
        align-items: center;
        width: 95%;
        max-width: 95%;
    }

    .faqTeam svg {
        transform: rotate(90deg) scale(3);
        object-fit: cover;
        height: 100%;
    }
}