/* SECTION POURQUOI UTILISER EDARY */
.why-edary {
	width: 100%;
	background: #fafafa;
	padding: 70px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.why-wrapper {
	max-width: 1100px;
	margin: auto;
}

.why-edary h2 {
	font-size: 24px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	margin-bottom: 10px;
}

.why-subtitle {
	font-size: 16px;
	color: #2b2628;
	opacity: 0.9;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 45px;
}

/* GRID */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

/* BOX */
.why-box {
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
	padding: 28px 22px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.why-box img {
	width: 60px;
	height: auto;
	margin-bottom: 20px;
}

.why-box h3 {
	font-size: 17px;
	color: #e9302a;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 10px;
}

.why-box p {
	font-size: 14px;
	color: #2b2628;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media ( max-width : 600px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
	.why-edary h2 {
		font-size: 20px;
	}
	.why-subtitle {
		font-size: 14px;
	}
	.why-box img {
		width: 55px;
	}
}