<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Start custom CSS for html, class: .elementor-element-2b81763 */.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 231, 235, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.mega-container {
  padding: 32px;
}

.mega-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 24px;
}

/* Enhanced Hero Section */
.mega-hero {
  background: linear-gradient(135deg, #fffbeb, #fffbeb);
  border: 2px solid #fde68a;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mega-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.1), 0 10px 10px -5px rgba(245, 158, 11, 0.04);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mega-hero:hover .hero-gradient-overlay {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mega-hero:hover .hero-image {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hero-icon {
  font-size: 28px;
  transition: transform 0.3s ease;
}

.mega-hero:hover .hero-icon {
  transform: scale(1.1);
}

.hero-title {
  font-size: 28px;
  font-weight: bold;
  color: #f59e0b;
  margin: 0;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  animation: pulse 2s infinite;
}

.star-icon {
  width: 12px;
  height: 12px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-description {
  color: #4b5563;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  color:#fff;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow-icon {
  transform: translateX(4px);
}

/* Enhanced Menu Items Grid */
.mega-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.mega-menu.active .mega-item {
  animation: fadeInUp 0.5s ease forwards;
}

.mega-item[data-delay="0"] { animation-delay: 0ms; }
.mega-item[data-delay="50"] { animation-delay: 50ms; }
.mega-item[data-delay="100"] { animation-delay: 100ms; }
.mega-item[data-delay="150"] { animation-delay: 150ms; }
.mega-item[data-delay="200"] { animation-delay: 200ms; }

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

.mega-item:hover {
  background: #fef3c7;
  border-color: #fde68a;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.1), 0 4px 6px -2px rgba(245, 158, 11, 0.05);
}

.item-image-container {
  position: relative;
  flex-shrink: 0;
  border-radius: 5px;
}

.item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.mega-item:hover .item-image {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.item-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wow-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.echt-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.experte-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.popular-indicator {
  position: absolute;
  bottom: -8px;
  left: -8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.users-icon {
  width: 12px;
  height: 12px;
}

.item-content {
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.mega-item:hover .item-title {
  color: #92400e;
}

.item-description {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Enhanced Footer */
.mega-footer {
  background: linear-gradient(135deg, #fffbeb, #fffbeb);
  border-top: 2px solid #fde68a;
  padding: 20px 32px;
  margin: 0 -32px -32px;
  border-radius: 0 0 24px 24px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.footer-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.support-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.clock-icon {
  width: 12px;
  height: 12px;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link {
  color: #92400e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #78350f;
}

.footer-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.footer-cta:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 6px 8px -1px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mega-container {
    padding: 20px;
  }
  
  .mega-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mega-items {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-actions {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .mega-container {
    padding: 16px;
  }
  
  .hero-image {
    height: 140px;
  }
  
  .mega-item {
    padding: 16px;
    gap: 12px;
  }
  
  .item-image {
    width: 60px;
    height: 60px;
  }
  
  .mega-footer {
    padding: 16px;
    margin: 0 -16px -16px;
  }
}/* End custom CSS */</pre></body></html>