.faq-section {
	padding: 80px 0;
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 64px;
	margin: 0 auto;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.faq-item {
	border: 1px solid var(--color-primary-dark);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	padding: 20px;
}

.faq-item.faq-question {
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.faq-item:hover {
	border-color: var(--color-primary-dark);
	box-shadow: 0 2px 12px rgba(21, 130, 135, 0.15);
}

.faq-question-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-weight: var(--font-weight-semibold);
	color: var(--color-black);
	text-align: left;
	transition: all 0.3s ease;
}

.faq-item.active .faq-question-content {
	color: var(--color-black);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	color: var(--color-primary-dark);
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 20px;
	font-weight: bold;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-answer {
	display: none;
	padding: 20px;
	border-radius: 8px;
	background-color: var(--color-primary-light);
	color: var(--color-neutral-500);
	font-size: var(--font-size-base);
	line-height: var(--line-height-relaxed);
}

.faq-answer.show {
	display: block;
	animation: slideDown 0.3s ease;
	margin-top: 20px;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer p {
	margin: 0 0 12px 0;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

/* Listes dans les réponses FAQ */
.faq-answer ul,
.faq-answer ol {
	margin: 12px 0;
	padding-left: 24px;
}

.faq-answer ul:first-child,
.faq-answer ol:first-child {
	margin-top: 0;
}

.faq-answer ul:last-child,
.faq-answer ol:last-child {
	margin-bottom: 0;
}

.faq-answer ul {
	list-style-type: disc;
}

.faq-answer ol {
	list-style-type: decimal;
}

.faq-answer li {
	margin-bottom: 8px;
	padding-left: 4px;
}

.faq-answer li:last-child {
	margin-bottom: 0;
}

/* Listes imbriquées */
.faq-answer ul ul,
.faq-answer ol ul {
	list-style-type: circle;
	margin: 8px 0;
}

.faq-answer ul ul ul,
.faq-answer ol ul ul {
	list-style-type: square;
}

/* Liens dans les réponses */
.faq-answer a {
	color: var(--color-primary-dark);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.faq-answer a:hover {
	color: var(--color-primary-dark);
	opacity: 0.8;
}

/* Texte en gras et italique */
.faq-answer strong,
.faq-answer b {
	font-weight: var(--font-weight-semibold);
}

.faq-answer em,
.faq-answer i {
	font-style: italic;
}

@media (max-width: 768px) {

	.faq-container {
		gap: 48px;
	}

	.faq-items {
		gap: 12px;
	}

	.faq-question {
		font-size: var(--font-size-base);
	}

	.faq-answer {
		font-size: var(--font-size-base);
	}
}

@media (max-width: 480px) {
	.faq-container {
		gap: 40px;
	}

	.faq-items {
		gap: 8px;
	}

	.faq-question {
		font-size: var(--font-size-sm);
	}

	.faq-icon {
		width: 20px;
		height: 20px;
		font-size: 16px;
	}

	.faq-answer {
		font-size: var(--font-size-sm);
	}
}
