@media screen and (min-device-width: 901px){
    .FAQ{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 5rem;
    }
    .FAQ__request {
    }
    .request {
        padding: 3rem;
        border-radius: 2rem;
        width: 100%;
        background-color: white;
    }
    .request:has(.request__text.open) .request__button{
        rotate: 0deg;
    }
    .request__header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .request__title {
        color: rgb(136, 136, 136);
        font-size: 2rem;
        font-weight: 500;
        line-height: 2.4rem;
    }
    .request__button {
        width: 6rem;
        height: 6rem;
        border: 0.3rem solid rgb(136, 136, 136);
        border-radius: 1rem;
        background-color: transparent;
        cursor: pointer;
        background-image: url(/assets/images/arrow.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 3.3rem 2.4rem;
        rotate: 90deg; 
    }
    .request__text {
        color: rgb(30, 30, 30);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2rem;
        padding-top: 3rem;
        width: 100%;
        display: none;
    }
    .request__text.open{
        display: block;
    }
}

@media screen and (min-device-width: 320px) and (max-device-width: 900px)  {
    .FAQ{
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 2rem;
        /* margin-top: 5rem; */
    }
    .section:has(.FAQ) h2.title{
        font-size: 3rem;
        line-height: 1;
        text-align: center;
    }
    .FAQ__request {
    }
    .request {
        padding: 3rem;
        border-radius: 2rem;
        width: 100%;
        background-color: white;
    }
    .request:has(.request__text.open) .request__button{
        rotate: 0deg;
    }
    .request__header {
        width: 100%;
        display: flex;
        gap: 2rem;
        justify-content: space-between;
        align-items: flex-start;
    }
    .request__title {
        color: rgb(136, 136, 136);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2rem;
    }
    .request__button {
        width: 4rem;
        height: 4rem;
        border: 0.3rem solid rgb(136, 136, 136);
        border-radius: 1rem;
        background-color: transparent;
        cursor: pointer;
        background-image: url(/assets/images/arrow.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 3rem 2rem;
        flex-shrink: 0;
        rotate: 90deg; 
    }
    .request__text {
        color: rgb(30, 30, 30);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2rem;
        padding-top: 3rem;
        width: 100%;
        display: none;
    }
    .request__text.open{
        display: block;
    }
}