body {
	margin: 0;
	font-family: 'Montserrat', Arial, sans-serif;
	background: linear-gradient(135deg, #e0f7fa 0%, #fffde4 100%);
	color: #222;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 40px;
	background: #00bcd4;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 2px;
}

nav a {
	color: #fff;
	text-decoration: none;
	margin-left: 24px;
	font-weight: 500;
	transition: color 0.2s;
}

nav a:hover {
	color: #D32F2F;
	/* Rouge du logo pour l'accentuation */
}

.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Designer2.jpeg') center/cover no-repeat;
	color: #fff;
	padding: 100px 20px 60px 20px;
	text-align: center;
	border-radius: 0 0 32px 32px;
	box-shadow: 0 4px 24px rgba(0, 188, 212, 0.08);
	position: relative; /* Ajouté pour le positionnement du contenu si nécessaire */
}

.hero h1 {
	font-size: 2.8rem; /* Légèrement augmenté pour plus d'impact */
	margin-bottom: 20px; /* Augmenté l'espace */
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7); /* Ombre portée plus forte */
	font-weight: bold;
}

.hero p {
	font-size: 1.4rem; /* Légèrement augmenté */
	margin-bottom: 24px; /* Ajouté pour espacer du bouton téléphone */
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* Ombre portée plus forte */
	line-height: 1.6;
}

.hero-phone {
	display: inline-block;
	margin-top: 32px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 12px 28px;
	border-radius: 32px;
	font-size: 1.35rem;
	font-weight: bold;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	letter-spacing: 1px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-phone a {
	color: #ffeb3b;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s;
}

.hero-phone a:hover {
	color: #fff176;
	text-decoration: underline;
}

section {
	margin: 48px auto;
	max-width: 800px;
	padding: 0 20px;
}

h2 {
	color: #00bcd4;
	margin-bottom: 16px;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 188, 212, 0.07);
}

th,
td {
	padding: 16px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
}

th {
	background: #e0f7fa;
	color: #00796b;
}

tr:last-child td {
	border-bottom: none;
}

footer {
	text-align: center;
	padding: 24px 0;
	background: #00bcd4;
	color: #fff;
	margin-top: 48px;
	border-radius: 32px 32px 0 0;
}

.logo-block {
	display: flex;
	align-items: center;
	gap: 18px;
}

.logo-img {
	height: 60px;
	width: auto;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 188, 212, 0.15);
	background: #fff;
	padding: 4px;
}

.logo-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.logo-title {
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 2px;
	color: #fff;
	line-height: 1.1;
}

.logo-slogan {
	font-size: 0.95rem;
	color: #e0f7fa;
	font-weight: 500;
	letter-spacing: 1px;
	margin-top: 2px;
}

@media (max-width: 600px) {
	header {
		flex-direction: column;
		padding: 16px 10px;
	}

	.logo {
		margin-bottom: 12px;
	}

	.hero {
		padding: 60px 10px 40px 10px;
	}

	section {
		margin: 32px auto;
		padding: 0 8px;
	}

	.logo-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.logo-img {
		height: 44px;
	}

	.logo-title {
		font-size: 1.2rem;
	}

	.logo-slogan {
		font-size: 0.8rem;
	}

	.hero-phone {
		font-size: 1rem;
		padding: 8px 12px;
	}
}