

        @font-face {
            font-family: 'MontserratAlt1';
            src: url('/fonts/MontserratAlt1-ExtraLight.woff2') format('woff2'),
                url('/fonts/MontserratAlt1-ExtraLight.woff') format('woff');
            font-weight: 200;  /* ExtraLight = 200 */
            font-style: normal;
            font-display: swap; /* Text sichtbar auch wenn Font lädt */
        }

        :root {
            --primary-orange: #ff6b35;
            --secondary-purple: #6366f1;
            --primary-black: #000000;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-white: #ffffff;
            --text-gray: #b3b3b3;
            --gradient-1: linear-gradient(135deg, #fbbc05 0%, #ff6b35 100%);
            --gradient-2: linear-gradient(135deg, rgba(251, 188, 5, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
            --gradient-3: linear-gradient(135deg, #6366f1 0%, #2d1b69 100%);
            --bg-dark: linear-gradient(135deg, #000000 0%, #1a1f2e 50%, #2d1b69 100%);
            --bg-light: linear-gradient(135deg, #ede9fe 0%, #eef2ff 60%, #f8faff 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--bg-dark);
        }

        /* Main Navbar */
        .main-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 4.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-brand {
            font-size: 1.5rem;
            font-weight: 200;
            color: var(--text-white);
            text-decoration: none;
            font-family: 'MontserratAlt1-ExtraLight', sans-serif;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            font-size: 1rem;
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(251, 188, 5, 0.3);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu {
            position: fixed;
            top: 4.5rem;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            padding: 2rem 5%;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .mobile-nav-link {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Hero Section */
        .hero-section {
            padding: 8rem 0 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(251, 188, 5, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Navigation für Rechtliches */
        .legal-nav {
            background: var(--bg-light);
            padding: 3rem 0;
            text-align: center;
        }

        .legal-nav-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .legal-nav-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .legal-nav-link {
            background: var(--text-white);
            color: var(--secondary-purple);
            border: 2px solid var(--secondary-purple);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .legal-nav-link:hover,
        .legal-nav-link.active {
            background: var(--secondary-purple);
            color: var(--text-white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        /* Content Section */
        .content-section {
            background: var(--bg-light);
            padding: 0 0 5rem 0;
            min-height: 60vh;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .legal-content {
            background: var(--text-white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .legal-content h2 {
            color: var(--primary-black);
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary-purple);
        }

        .legal-content h3 {
            color: var(--primary-black);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 2rem 0 1rem 0;
        }

        .legal-content p {
            color: #4a4a4a;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .legal-content ul {
            margin: 1rem 0 1rem 2rem;
            color: #4a4a4a;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
        }

        .legal-content strong {
            color: var(--primary-black);
        }

        /* Hidden Content */
        .hidden {
            display: none;
        }

        /* Footer */
        .footer {
            background: var(--bg-dark);
            padding: 4rem 0 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 200;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            font-family: 'MontserratAlt1-ExtraLight', sans-serif;
        }

        .footer-brand .tagline {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(251, 188, 5, 0.3);
        }

        .footer-nav h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--text-white);
        }

        .footer-nav a.special:hover {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .made-with {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .legal-links {
            display: flex;
            gap: 2rem;
        }

        .legal-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: var(--text-white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-2px);
        }

        .social-icon {
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        .social-link:hover .social-icon {
            color: var(--primary-black);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .legal-links {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .main-navbar {
                padding: 0 1.5rem;
                height: 4rem;
            }

            .nav-brand {
                font-size: 1.3rem;
            }

            .nav-cta {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .hero-section {
                padding: 6rem 0 2rem 0;
                min-height: 40vh;
            }

            .legal-nav-links {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .legal-content {
                padding: 2rem 1.5rem;
            }

            .legal-links {
                flex-direction: column;
                gap: 0.5rem;
            }
        }