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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2563EB;
            text-decoration: none;
            font-family: 'Georgia', serif;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #2563EB;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
             background: linear-gradient(rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.3)),
                        url('home.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Georgia', serif;
        }

        .hero h1 .highlight {
            color: #2563EB;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            background: #2563EB;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .cta-button:hover {
            background: #1D4ED8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: #2563EB;
            position: relative;
            font-family: 'Georgia', serif;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #2563EB, #60A5FA);
        }

        /* Welcome Section */
        .welcome {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        }

        .welcome-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
        }

        .welcome-intro {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #2563EB;
            font-style: italic;
        }

        .questions-section {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 2rem 0;
        }

        .questions-section h3 {
            color: #2563EB;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-family: 'Georgia', serif;
        }

        .questions-section ul {
            list-style: none;
            padding: 0;
        }

        .questions-section li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            font-style: italic;
        }

        .questions-section li::before {
            content: "✨";
            position: absolute;
            left: 0;
            color: #2563EB;
        }

        .closing-text {
            font-size: 1.2rem;
            color: #2563EB;
            margin-top: 2rem;
            font-style: italic;
        }

        .signature {
            font-size: 1.3rem;
            color: #2563EB;
            margin-top: 2rem;
            font-weight: bold;
            font-family: 'Georgia', serif;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 366px;
            height: 112px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(45deg, #2563EB, #60A5FA);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #2563EB;
        }

        .service-item h3 {
            margin-bottom: 1rem;
            color: #2563EB;
            font-family: 'Georgia', serif;
        }

        .service-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Legal Section */
        .legal {
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        }

        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .legal-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #444;
        }

        .legal-content strong {
            color: #2563EB;
        }

        .legal-highlight {
            background: #FEF3C7;
            border: 1px solid #FCD34D;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            color: #92400E;
        }

        /* Cookie Bar */
        .cookie-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(37, 99, 235, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1.5rem;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        .cookie-bar.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .cookie-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.4;
        }

        .cookie-text a {
            color: #93C5FD;
            text-decoration: underline;
            cursor: pointer;
        }

        .cookie-text a:hover {
            color: white;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            font-weight: bold;
        }

        .cookie-btn.accept {
            background: white;
            color: #2563EB;
        }

        .cookie-btn.accept:hover {
            background: #f0f0f0;
        }

        .cookie-btn.decline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-btn.decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Legal Pages - Verbesserte Darstellung */
        .legal-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            overflow-y: auto;
            padding: 2rem 0;
        }

        .legal-page.show {
            display: block;
        }

        .legal-page-overlay {
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 6rem 1rem 4rem 1rem;
        }

        .legal-page-content {
            max-width: 900px;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
        }

        .legal-page-header {
            padding: 2rem 2.5rem 1rem 2.5rem;
            border-bottom: 2px solid #E0F2FE;
            position: sticky;
            top: 0;
            background: white;
            border-radius: 15px 15px 0 0;
            z-index: 10;
        }

        .legal-page-header h1 {
            color: #2563EB;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            text-align: center;
            font-family: 'Georgia', serif;
        }

        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            background: #2563EB;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: #1D4ED8;
            transform: scale(1.1);
        }

        .legal-page-body {
            padding: 2rem 2.5rem;
            overflow-y: auto;
            flex: 1;
        }

        .legal-page h2 {
            color: #2563EB;
            font-size: 1.6rem;
            margin: 2rem 0 1rem 0;
            font-family: 'Georgia', serif;
        }

        .legal-page h3 {
            color: #2563EB;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem 0;
            font-family: 'Georgia', serif;
        }

        .legal-page p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: #444;
        }

        .legal-page ul {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
        }

        .legal-page li {
            margin-bottom: 0.5rem;
            color: #444;
        }

        .legal-page-footer {
            padding: 1.5rem 2.5rem 2rem 2.5rem;
            border-top: 2px solid #E0F2FE;
            background: #F0F9FF;
            border-radius: 0 0 15px 15px;
            text-align: center;
        }

        .back-home {
            display: inline-block;
            background: #2563EB;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            font-weight: bold;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .back-home:hover {
            background: #1D4ED8;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        /* Footer */
        footer {
            background: #2563EB;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer a {
            color: #93C5FD;
            text-decoration: underline;
            margin: 0 0.5rem;
            cursor: pointer;
        }

        footer a:hover {
            color: white;
        }

        .footer-links {
            margin-bottom: 1rem;
        }

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .section {
                padding: 3rem 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                justify-content: center;
            }

            .legal-page-overlay {
                padding: 2rem 0.5rem;
            }

            .legal-page-content {
                max-height: 95vh;
            }

            .legal-page-header,
            .legal-page-body,
            .legal-page-footer {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .close-btn {
                right: 1rem;
            }
        }