.carte-grise {
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #2c2c2c;
	line-height: 1.7;
	padding: 40px 20px;
	background: #f9f9f9;
}

.carte-grise h1 {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #E52423;
}

/* Intro */
.intro {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 80%;
	margin: 0 auto 60px auto;
}

.intro-text {
	flex: 1 1 auto;
	font-size: 1.1rem;
}

.intro-text strong {
	color: #E52423;
	font-weight: 600;
}

.intro-img {
	flex: 1 1 300px;
	max-width: 400px;
}

.intro-img img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
	object-fit: cover;
}

/* Documents */
.docs {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
	padding: 30px;
	width: 70%;
	margin: 0 auto;
}

.docs h2 {
	text-align: center;
	font-size: 1.6rem;
	color: #E52423;
	margin-bottom: 20px;
}

.docs ul {
	list-style: none;
	padding: 0;
}

.docs li {
	padding: 10px 0 10px 30px;
	position: relative;
	border-bottom: 1px solid #eee;
}

.docs li::before {
	content: "📄";
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 18px;
	color: #E52423;
}

.docs a {
	color: #E52423;
	font-weight: 600;
	text-decoration: none;
}

.docs a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 860px) {
	.intro {
		flex-direction: column-reverse;
		width: 95%;
	}

	.docs {
		width: 95%;
		padding: 20px;
	}
}