    main.faq_main {
        background-size: cover;
        background-position: center;
        background-image: url(../../../../uploads/2023/10/fond-papier-peint.jpg);
    }

    main.faq_main .faq_questions {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 0;
        padding-bottom: 0;
    }

    main.faq_main .banniere {
        text-align: center;
        padding-bottom: 0;
    }

    main.faq_main .banniere .texte {
        max-width: 800px;
        margin: auto;
    }

    main.faq_main .banniere a {
        color: var(--couleur-14);
        font-weight: bold;
    }

    main.faq_main .banniere a:hover {
        text-decoration: underline;
    }

    main.faq_main h1 {
        margin-bottom: 30px;
    }

    main.faq_main h2 {
        margin-top: 70px;
        margin-bottom: 30px;
        width: 100%;
        font-size: 35px;
    }


    main.faq_main h3 {
        margin-right: 30px;
    }

    main.faq_main .titre {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        cursor: pointer;
    }

    main.faq_main .question {
        border: 1px solid var(--couleur-14);
        border-radius: 5px;
        margin-bottom: 25px;
        padding: 5px 25px;
        width: calc(50% - 25px);
        height: max-content;
    }

    main.faq_main .question .reponse {
        max-height: 0;
        height: 0;
        transition: all 0.2s ease-in;
        overflow: hidden;
        opacity: 0;
    }

    main.faq_main .question.ouvert .reponse {
        max-height: 5000px;
        margin-bottom: 25px;
        height: max-content;
        opacity: 1;
    }

    main.faq_main .question.ouvert .reponse p {
        font-weight: lighter;
    }

    main.faq_main .plus {
        height: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20px;
    }

    main.faq_main .question .plus p {
        font-weight: bold;
        transform: rotate(90deg);
        font-size: 20px;
        color: var(--couleur-14);
    }

    main.faq_main .question.ouvert .plus p {
        transform: rotate(-90deg);
        margin-left: -2px;
    }

    main.faq_main .question.ouvert h3 {
        font-family: var(--police-worksans-bold);
    }



    @media screen and (max-width: 900px) {
        main.faq_main .question {
            width: 100%;
        }

        main.faq_main h2 {
            font-size: 30px;
        }
    }