.card {
  background: white;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border-top: 5px solid transparent;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  border-top: 5px solid #c06c84;
}
