.service-list li {
  background: #1a2332;
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 4px solid #0073aa; /* Theme primary color */
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  font-size: 1rem;
  color: #ffffff;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-list li:hover {
  background: #243044;
  transform: translateY(-2px);
}