.service-grids-container {
	font-family: inherit;
}

.service-grid-heading {
	text-align: center;
	margin-bottom: 2rem;
	margin-top: 3rem;
	color: #0F492B; /* Secondary brand color for heading */
}

.service-grids-container .service-grid-heading:first-child {
	margin-top: 0;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
}

.service-grid-item {
	background: #f9f9f9;
	padding: 1.5rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	border: 1px solid #e0e0e0;
}

.service-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	background-color: #74A900; /* Primary brand color on hover */
}

.service-grid-item h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #2c3e50;
	transition: color 0.3s ease;
}

.service-grid-item:hover h3 {
	color: #ffffff; /* White text on hover */
}