.services {
	padding: 40px 20px;
	text-align: center;
}
.active {
	color: #59D2FE;
	font-weight: bold;
}
.services h2 {
	color: white;
	font-size: 2em;
	margin-bottom: 30px;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.service-card {
	background-color: #1C1C1E;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	text-align: left;
}



.service-card h3 {
	color: #59D2FE;
	font-size: 1.2em;
	margin-bottom: 10px;
}

.service-card p {
	color: #ccc;
	font-size: 0.95em;
	line-height: 1.4;
}