.vd-why-section{
	padding:120px 0;
	background:#fff;
}

.vd-why-header{
	max-width:700px;
	margin:0 auto 70px;
	text-align:center;
}

.vd-why-title{
	font-size:clamp(42px,5vw,64px);
	line-height:1.1;
	font-weight:700;
	color:#071a3d;
	margin:0;
}

.vd-why-title span{
	display:block;
	color:#d5aa32;
}

.vd-why-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
}

.vd-why-card{
	background:#fff;
	border:1px solid #ececec;
	border-radius:18px;
	padding:40px 35px;
	transition:.3s;
	box-shadow:0 10px 35px rgba(0,0,0,.04);
}

.vd-why-card:hover{
	transform:translateY(-8px);
	box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.vd-why-icon{
	width:64px;
	height:64px;
	border-radius:50%;
	background:#071a3d;
	color:#d5aa32;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:24px;
	margin-bottom:25px;
}

.vd-why-card h3{
	font-size:24px;
	margin-bottom:15px;
	color:#071a3d;
}

.vd-why-card p{
	color:#666;
	line-height:1.8;
	font-size:15px;
	margin:0;
}

@media(max-width:900px){

	.vd-why-grid{
		grid-template-columns:repeat(2,1fr);
	}

}

@media(max-width:600px){

	.vd-why-section{
		padding:80px 0;
	}

	.vd-why-grid{
		grid-template-columns:1fr;
	}

	.vd-why-title{
		font-size:42px;
	}

}