/* Minimal Icon CSS mit Unicode-Symbolen - keine Web-Fonts erforderlich */
.fa-solid {
  font-family: system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  display: inline-block;
}

.fa-globe:before { content: "🌐"; }
.fa-users:before { content: "👥"; }
.fa-shield-halved:before { content: "🛡️"; }
.fa-bolt:before { content: "⚡"; }
.fa-chevron-down:before { content: "⬇️"; }
.fa-calendar-alt:before { content: "📅"; }
.fa-graduation-cap:before { content: "🎓"; }
.fa-tools:before { content: "🔧"; }
.fa-comments:before { content: "💬"; }

/* Store Icons */
.apple-icon:before { content: ""; }
.google-play-icon:before { content: "▶️"; }

/* Animation für den Scroll-Pfeil */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
