/* Styles repris de mentions_legales pour homogénéité */
h1 {
	color: #1f6f99;
	font-size: 2.8rem;
	max-width: 1200px;
	margin: 32px auto 24px;
	box-sizing: border-box;
	padding-bottom: 8px;
}

/* Image de la charte : centrée et responsive */
.charte-image {
	flex: 0 0 38%; /* give the image column about 38% of the header width */
	max-width: 480px;
	box-sizing: border-box;
	text-align: left;
}

.charte-image img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
	border-radius: 4px;
}

/* Header block: image on left, heading on right */
.charte-header {
	max-width: 1200px;
	margin: 32px auto;
	padding: 0 32px;
	box-sizing: border-box;
	display: flex;
	gap: 48px; /* space between image and text */
	align-items: flex-start;
}

.charte-text {
	flex: 1 1 55%; /* take remaining space for text */
	margin: 0;
	padding: 0;
	line-height: 1.8;
	color: #3b7fa0;
	text-align: justify;
}

.charte-text h2 {
	color: #235e84;
	font-size: 1.50rem;
	margin: 0 0 12px;
	text-decoration: underline;
	padding-bottom: 10px;
	text-align: left; /* prevent inheritance of justified alignment */
}
/* Style des paragraphes repris des Conditions Générales de Vente */
.charte-text p {
	font-size: 1.2rem;
	margin: 0 0 12px;
	line-height: 1.8;
	margin-bottom: 16px;
}

.charte-text strong {
	color: #1f6f99;
	font-weight: 700;
}

/* Points list under header */
.charte-points {
	max-width: 1200px;
	margin: 16px auto 40px;
	padding: 0 32px;
	box-sizing: border-box;
	color: #3b7fa0;
	line-height: 1.8;
}

.charte-points p {
	font-size: 1.2rem;
	margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 2rem;
		margin: 24px 16px 16px;
		text-align: center;
	}

	.charte-header {
		flex-direction: column;
		gap: 24px;
		padding: 0 16px;
		margin: 20px auto;
	}

	.charte-image {
		flex: 1 1 100%;
		max-width: 100%;
		text-align: center;
	}

	.charte-image img {
		margin: 0 auto;
	}

	.charte-text {
		flex: 1 1 100%;
		text-align: left;
	}

	.charte-text h2 {
		font-size: 1.3rem;
	}

	.charte-text p,
	.charte-points p {
		font-size: 1rem;
	}

	.charte-points {
		padding: 0 16px;
		margin-bottom: 24px;
	}
}