body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Bestehende Styles beibehalten und folgende hinzufügen: */

/* Alternating section backgrounds */
.section:nth-child(odd) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

/* Hero section enhancement */
.hero.is-custom {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero.is-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero .title, .hero .subtitle {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Card-like sections */
.feature-section {
  margin: 2rem 0;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Image animations */
.image-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-container img {
  transition: transform 0.6s ease;
  border-radius: 10px;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Slide-in animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Enhanced list styling */
.feature-list li {
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  border-left-color: #3273dc;
  background: rgba(50, 115, 220, 0.05);
  border-radius: 0 5px 5px 0;
}

/* Enhanced button styling */
.button.is-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Navbar enhancement */
.navbar.is-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer enhancement */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.footer a {
  color: #ecf0f1;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-section {
    margin: 1rem 0;
    padding: 2rem 1rem;
  }
  
  .animate-slide-left,
  .animate-slide-right {
    animation: fadeInUp 0.8s ease-out;
  }
}