.hover-lift-effect {
  transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift-effect:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
