main {
	min-height: calc(100vh - 240px);
}

main h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #E52423;
	font-size: 2rem;
	font-weight: 700;
}

.ct-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 70%;
	margin: 0 auto;
}

.ct-main-img {
	width: 300px;
	max-height: 500px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.ct-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 25px;
}

.ct-text p {
	line-height: 1.6;
	text-align: justify;
	font-size: 1.05rem;
	color: #333;
}

/* Bloc Offre */
.ct-offer {
	background: #fff;
	border: 2px solid #E52423;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.ct-price {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: #222;
}

.ct-price span {
	color: #E52423;
	font-size: 1.6rem;
	font-weight: 700;
}

.ct-note {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
}

.ct-logo {
	width: 100px;
	margin: 10px auto 0 auto;
	border-radius: 6px;
	display: block;
}

/* Responsive */
@media screen and (max-width: 860px) {
	.ct-section {
		flex-direction: column;
		width: 90%;
		text-align: center;
	}

	.ct-main-img {
		width: 100%;
		max-height: 100%;
	}

	.ct-offer {
		margin-top: 10px;
		margin-bottom: 30px;
	}
}