* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: #1a1a1a;
	background-color: #ffffff;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}

header h1 {
	font-size: 1.25rem;
	font-weight: 600;
}

nav a {
	margin-left: 1rem;
	text-decoration: none;
	font-size: 0.875rem;
	color: #333333;
}

nav a:hover {
	color: #000000;
}

section {
	padding: 6rem 1.5rem;
}

.hero {
	text-align: center;
	background-color: #f9f9f9;
	padding-top: 10rem;
}

.hero h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1rem;
	color: #666666;
	margin-bottom: 2rem;
}

.hero a {
	background: #000000;
	color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	text-decoration: none;
}

.section-title {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 3rem;
}

.grid {
	display: grid;
	gap: 2rem;
}

.services,
.pricing {
	max-width: 1200px;
	margin: 0 auto;
}

.card {
	text-align: center;
}

.card {
	border: 1px solid #e0e0e0;
	padding: 1.5rem;
	border-radius: 0.75rem;
	background: #ffffff;
}

.card h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.card p {
	font-size: 0.95rem;
	color: #555555;
}

.contact {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.price {
	font-size: 1.75rem;
	font-weight: bold;
	margin: 1rem 0;
	color: #000;
}

form input,
form textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #cccccc;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

form button {
	width: 100%;
	padding: 1rem;
	background: #000000;
	color: #ffffff;
	border: none;
	border-radius: 0.5rem;
	font-size: 0.95rem;
}

footer {
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	text-align: center;
	padding: 2rem 1rem;
	font-size: 0.875rem;
	color: #888888;
}

.services,
.tarifs {
	display: grid;
	gap: 2rem;
}

.burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 4px 0;
}

@media (max-width: 768px) {
	nav {
		display: none;
		flex-direction: column;
		background-color: white;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		/* justify-content: center; */
		align-items: center;
		padding: 2rem;
	}

	nav.active {
		display: flex;
	}

	.burger {
		display: flex;
	}
}

@media screen and (min-width: 768px) {

	.services,
	.tarifs {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.grid-cols-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid-cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero h2 {
		font-size: 3rem;
	}
}

.close-btn {
	display: none;
}


@media (max-width: 768px) {
	.close-btn {
		position: absolute;
		top: 1rem;
		right: 1.5rem;
		font-size: 2rem;
		font-weight: bold;
		cursor: pointer;
		display: block;
	}

	nav {
		padding-top: 4rem;
	}

	nav a {
		display: block;
		font-size: 1.25rem;
		font-weight: 500;
		margin: 1rem 0;
	}

	nav a {
		text-decoration: none;
		font-size: 0.875rem;
		color: #333333;
		position: relative;
	}

	nav a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -8px;
		width: 100%;
		height: 4px;
		background-color: #82c8ff;
		transform: scaleX(1);
		transform-origin: left;
		transition: transform 0.3s ease;
	}
}