        :root {
            --primary: #5D5FEF;
            --secondary: #22C55E;
            --dark: #111827;
            --light: #F9FAFB;
            --gray: #E5E7EB;
            --accent: #F59E0B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary), #4338CA);
            color: white;
            padding: 4rem 0;
        }
        
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-content {
            max-width: 540px;
        }
        
        .hero-form {
            background: white;
            border-radius: 16px;
            padding: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 00px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            line-height: 1.2;
        }
        
        .subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .hero-tagline {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 500;
            width: fit-content;
            margin-bottom: 1.5rem;
        }
        
        .integration-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.875rem;
            margin-top: 1rem;
        }
        
        .main-content {
            padding: 4rem 0;
        }
        
        .card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
            margin-bottom: 2.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            margin-bottom: 1rem;
            padding-left: 1.75rem;
            position: relative;
            font-size: 1.1rem;
        }
        
        .feature-list li::before {
            content: "✔";
            color: var(--secondary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 1rem;
        }
        
        .btn-primary {
            background-color: #FF7500;
        }
        
        .btn-primary:hover {
            background-color: #FF6000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
        }
        
        .btn-secondary {
            background-color: var(--primary);
        }
        
        .btn-secondary:hover {
            background-color: #4b4edd;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(93, 95, 239, 0.4);
        }
        
        iframe {
            width: 100%;
            height: 330px;
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .mascot-card {
            background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
            text-align: center;
        }
        
        .mascot-quote {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            display: inline-block;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-weight: 500;
        }
        
        .testimonials-card {
            text-align: center;
        }
        
        .testimonials-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .testimonial-feature {
            background-color: #F3F4F6;
            padding: 1.5rem;
            border-radius: 12px;
            flex: 1;
            max-width: 200px;
        }
        
        .integration-card {
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .integration-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .integration-item {
            background-color: #F3F4F6;
            padding: 1.5rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .integration-logo {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        
        .zapier-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background-color: #FF4F00;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        .footer-cta {
            text-align: center;
            margin: 4rem 0;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.2s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        .how-it-works {
            margin-top: 2rem;
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .step-item {
            background-color: #F3F4F6;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }
        
        .step-number {
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1rem auto;
            font-weight: bold;
        }
        
        /* Pricing Section Styles */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }
        
        .pricing-card.popular {
            border-color: var(--secondary);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
        }
        
        .pricing-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .pricing-subtitle {
            font-size: 0.875rem;
            color: #6B7280;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .pricing-price {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--primary);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .pricing-features li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
        }
        
        .pricing-features li::before {
            content: "✓";
            color: var(--secondary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .pricing-cta {
            margin-top: auto;
            text-align: center;
        }
        
        .pricing-card.enterprise .pricing-features .highlight {
            font-weight: 600;
            color: var(--primary);
        }
        
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            gap: 1rem;
        }
        
        .toggle-option {
            font-weight: 600;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: var(--primary);
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(30px);
        }
        
        .savings-label {
            background-color: var(--accent);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-tagline {
                margin: 0 auto 1.5rem auto;
            }
            
            .integration-badge {
                margin: 1rem auto 0 auto;
            }
            
            .testimonials-features {
                flex-direction: column;
                align-items: center;
            }
            
            .testimonial-feature {
                width: 100%;
                max-width: 100%;
            }
            
            .integration-grid {
                grid-template-columns: 1fr;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 1100px) and (min-width: 901px) {
            .integration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .pricing-grid .pricing-card:last-child {
                grid-column: span 3;
                max-width: 400px;
                margin: 0 auto;
            }
        }

  .content-container {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #fff;
  }

  .content-title {
    font-size: 28px;
    font-weight: bold;
    white-space: nowrap;
  }

  .content-subtitle {
    font-size: 20px;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .content-subtitle {
      font-size: 16px; /* Reduce size on mobile */
      display: block; /* Force line breaks */
      white-space: normal;
    }
  }

  .hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--primary);
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  /* Show hamburger on mobile */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: flex;
    }
    
    .nav-links {
      display: none;
    }
    
    .mobile-menu {
      display: flex;
    }
  }

  .round-button {
    display: inline-block;
    background-color: #FF7500;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0rem 0.5rem;
    border-radius: 50px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    height: 30px; /* Fixed height */
    line-height: 30px; /* Centers text vertically */
  }

  .round-button:hover {
    background-color: #E66900;
  }

  .navigation {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
  }

@media (max-width: 768px) {
  .content-title {
    font-size:19px;

 /* Kleinere Schriftgröße auf mobilen Geräten */
    white-space: normal; /* Erlaubt Zeilenumbrüche bei Bedarf */
  }
  
  .content-subtitle {
    font-size: 6px; /* Noch kleinere Schrift für den Untertitel */
    display: block; /* Erzwingt einen Zeilenumbruch */
    white-space: normal;
	margin-left: 140px;
    margin-top: -10px; /* Kleiner Abstand zur oberen Zeile */
  }
}

/* Ersetzen Sie den span-Tag mit diesen Klassen */
.content-container {
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
}



.content-subtitle {
  font-size: 14px;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 10000;
  display: none; /* Hidden by default */
}

.cookie-banner button {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 0.5rem;
}

     .dropdown {
            position: relative;
           display: flex;
            align-items: center;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            top: 100%; /* Direkt unter dem "Help"-Text */
            left: 0;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            width: 100%;
            box-sizing: border-box;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;}


        .imprint-section {
            margin-bottom: 2rem;
        }
        