/* Startzustand */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Sichtbar */
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
