main p {
	width: 80%;
	max-width: 900px;
	text-align: justify;
	margin: 0 auto 40px auto;
	line-height: 1.6;
}

main .gallery-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	margin: 20px auto;
	width: 80%;
	max-width: 1000px;
}

main .gallery-row img {
    flex: 1 1;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

main .gallery-row img:hover {
	transform: scale(1.05);
}

/* Bloc principal carénages */
#carenages {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	margin: 40px auto;
	width: 80%;
	max-width: 1000px;
}

#carenages > img {
	flex: 1 1 400px;
	max-width: 480px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Bloc mise en avant */
.highlight-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #100C08;
	color: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	max-width: 320px;
}

.highlight-box p {
	font-size: 1rem;
	line-height: 1.5;
	margin: 10px 0;
}

.highlight-box img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-top: 15px;
}