.cg-why{

	padding:100px 0;

	background:#F8FAFC;

}

.why-grid{

	display:grid;

	grid-template-columns:repeat(4,1fr);

	gap:30px;

	margin-top:60px;

}

.why-card{

	background:#fff;

	padding:35px;

	border-radius:24px;

	box-shadow:0 20px 50px rgba(15,23,42,.05);

	transition:.35s;

	border:1px solid #EEF2F7;

}

.why-card:hover{

	transform:translateY(-10px);

	box-shadow:0 30px 80px rgba(0,0,0,.10);

	border-color:#24346E;

}

.why-icon{

	width:70px;

	height:70px;

	border-radius:50%;

	background:#EEF4FF;

	display:flex;

	align-items:center;

	justify-content:center;

	font-size:34px;

	margin-bottom:25px;

}

.why-card h3{

	font-size:24px;

	font-weight:700;

	margin-bottom:15px;

	color:#24346E;

}

.why-card p{

	font-size:16px;

	line-height:1.8;

	color:#64748B;

}

.why-bottom{

	margin-top:60px;

	display:flex;

	justify-content:center;

	gap:20px;

}

.btn-primary{

	background:#24346E;

	color:#fff;

	padding:16px 40px;

	border-radius:12px;

	text-decoration:none;

	font-weight:700;

}

.btn-primary:hover{

	background:#EC7A1C;

}

.btn-secondary{

	background:#fff;

	border:2px solid #24346E;

	color:#24346E;

	padding:16px 40px;

	border-radius:12px;

	text-decoration:none;

	font-weight:700;

}

.btn-secondary:hover{

	background:#24346E;

	color:#fff;

}