.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.service-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	text-decoration: none;
	color: inherit;
	display: block;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-img {
	height: 200px;
	background: #2a5bd7;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	margin-bottom: 10px;
	font-size: 1.3rem;
	color: #333;
}

.service-content p {
	color: #6c757d;
	font-size: 0.95rem;
	margin-bottom: 15px;
	line-height: 1.5;
}

.service-price {
	margin-bottom: 15px;
	font-size: 1.1rem;
	color: #2a5bd7;
}

.service-link {
	color: #2a5bd7;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}