
.faq {
    padding: 5%;
    text-align: justify;
    display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
    margin: 10px;
}

.faq-box {
    display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}

.faq-img {
    width: 80%; /* Assurez-vous que l'image utilise toute la largeur disponible dans son div parent */
	max-width: 200px; /* Limite la taille de l'image si nécessaire */
	height: auto; /* Pour maintenir le ratio de l'image */
}                               
                        /*CENTRER IMAGE*/

.qa-container {
    width: 100%;
}

.qa-item {
    margin-bottom: 10px;
}

.question {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
	text-align: left;
}

.question h2 {
    margin: 0;
    font-size: 18px;
	text-align: left;
    font-weight: 350;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
	padding-left: 20px;
	padding-right: 25px;
}

.answer p {
    font-size: 13px;
}

.toggle-answer {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
	color: #969db7;
}

.hidden-content {
    display: none;
}

.renvoi {
    padding: 5%;
	padding-top: 0px;
    text-align: center;
    display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}

.renvoi-box {
	background-color:#d7dae4;
	box-shadow: 0 0 1px 0 rgba(0,12,32,0.04), 0 10px 16px 0 rgba(10,31,68,0.06);
	border-radius: 20px;
	padding: 20px 30px;
	height:100%;
	display:flex;
	flex-direction: row;
    margin: 5px;
}

.renvoi-box h4{
	font-size: 18px;
    font-weight: 500;
}

.renvoi-box a {
	font-size: 18px;
    font-weight: 400;
	color: #d7dae4;
}

.renvoi-box a:hover {
	color: #383a44;

}



/* ==============================================
   Media Queries 
===============================================*/

/* Media query pour les tablettes et plus larges */
@media (min-width: 768px) {
    .question h2 {
        font-size: 20px;
    }

	.answer p {
		font-size: 15px;
	}
	
	.faq-img {
   	 	width: 80%; /* Assurez-vous que l'image utilise toute la largeur disponible dans son div parent */
		max-width: 400px; /* Limite la taille de l'image si nécessaire */
		height: auto; /* Pour maintenir le ratio de l'image */
	}         
	
	.renvoi h2 {
		font-size: 20px;
		font-weight: 400;
	}

}
