/* Custom CSS for hover animation */
.card:hover {
	transition: 0.3s ease;
	opacity: 0.8;
}
.service {
	background-color: #ffffff;
	color: #333;
	padding: 20px;
	margin: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	cursor: pointer;
}

.service:hover {
	transform: translateY(-10px);
}

.service h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.service p {
	font-size: 16px;
	line-height: 1.6;
}
