.pneumatiques-page h1 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 40px;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	margin: 0 auto 60px auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.service-block:nth-child(even) {
	flex-direction: row-reverse;
}

.service-block img {
	width: 50%;
	object-fit: cover;
}

.description {
	flex: 1;
	padding: 20px 30px;
}

.description p {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #c62828;
	text-decoration: underline;
}

.description ul {
	list-style: none;
	padding: 0;
}

.description ul li {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	margin: 10px 0;
}

.description ul li span {
	color: #333;
}

.description ul li strong {
	color: #c62828;
	font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 1023px) {
	.service-block {
		width: 90%;
		flex-direction: column;
		text-align: center;
	}

	.service-block img {
		width: 100%;
		max-height: 220px;
	}

	.description {
		padding: 20px;
	}

	.description ul li {
		justify-content: center;
		gap: 15px;
	}
}