/* Style général de la grille */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

/* Style des cartes */
.team-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #75816E;
/* couleur demandée */
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1em;
	border-radius: 12px;
	padding: 25px 15px;
	text-align: center;
	transition: all .25s ease;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Effet au survol */
.team-card:hover {
	background-color: #8B987F;
/* un ton plus clair au survol */
	transform: translateY(-4px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Titre des catégories */
.category-title {
	font-size: 1.5em;
	margin-top: 50px;
	margin-bottom: 20px;
	color: #3E4439;
	border-bottom: 2px solid #75816E;
	display: inline-block;
	padding-bottom: 5px;
}

/* Grille des cartes */
.team-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: left;
	margin-bottom: 40px;
}

/* Cartes individuelles */
.team-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
/* largeur uniforme */
	height: 80px;
/* hauteur uniforme */
	background-color: #75816E;
/* couleur demandée */
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
/* texte plus fin */
	font-size: .85em;
/* texte plus petit */
	border-radius: 12px;
	text-align: center;
	transition: all .25s ease;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Effet au survol */
.team-card:hover {
	background-color: #8B987F;
	transform: translateY(-4px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Titre des catégories */
.category-title {
	font-size: 1em;
	margin-top: 50px;
	margin-bottom: 20px;
	color: #3E4439;
	border-bottom: 2px solid #75816E;
	display: inline-block;
	padding-bottom: 5px;
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-card {
	background-color: #F6EFE5;
	padding: 25px 30px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform .3s ease, box-shadow .3s ease;
}

.faq-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-card:nth-child(odd) {
	background-color: #75816E;
	color: #ffffff;
}

.faq-card:nth-child(even) {
	background-color: #F6EFE5;
	color: #333333;
}

.faq-card h3 {
	margin: 0 0 15px;
	font-size: .95em;
	font-weight: 600;
	line-height: 1.4;
}

.faq-card:nth-child(odd) h3 {
	color: #ffffff;
}

.faq-card:nth-child(even) h3 {
	color: #75816E;
}

.faq-card p {
	margin: 0;
	line-height: 1.6;
	font-size: .85em;
}

.faq-card a {
	color: inherit;
	text-decoration: underline;
	font-weight: 500;
	transition: opacity .2s ease;
}

.faq-card a:hover {
	opacity: .8;
}

.faq-card:nth-child(odd) a {
	color: #F6EFE5;
}

.faq-card:nth-child(even) a {
	color: #75816E;
}

@media (max-width: 768px) {
	.faq-container {
		padding: 15px;
		gap: 15px;
	}
	
	.faq-card {
		padding: 20px;
	}
	
	.faq-card h3 {
		font-size: .95em;
	}
}