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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        section  {
            display: flex;
            min-height: 100vh;
            align-content: center;
            flex-wrap: wrap;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        a {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        a:hover {
            color: #ffffff;
        }

        .h2, .h3 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 100;
            margin-bottom: 20px;
        }
        .h3 {
            font-size: clamp(2rem, 3vw, 2.8rem);
        }

        .pointer {
            cursor: pointer;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 0;
            background: rgba(10, 10, 10, 0.95);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

        .nav-links a:hover {
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2300d4ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300d4ff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }

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

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 100;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 40px;
            color: #cccccc;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: #000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 80%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ffffff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
        }

        .service-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 3rem;
            float: right;
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .service-card p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 120px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: #cccccc;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
/*
        .about-visual {
            position: relative;
            height: 400px;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-visual::before {
            content: '🤖';
            font-size: 120px;
            opacity: 0.7;
        }*/

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact p {
            color: #cccccc;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input {
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #cccccc;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-submit {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: #000;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
            color: #fff;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #ffffff;
            font-size: 18px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2000;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
        }

        .chatbot-toggle:hover {
            transform: scale(1.12);
            box-shadow: 0 0 18px rgba(0, 212, 255, 0.8), 0 0 32px rgba(0, 212, 255, 0.5);
            background: linear-gradient(45deg, #00e0ff, #00aaff);
            filter: brightness(1.5) saturate(1.8);
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 40vw;
            height: 80vh;
            min-height: 500px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 170, 255, 0.4); /* matches blueGlow */
            border-radius: 20px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: blueGlow 2.5s ease-in-out infinite;
        }

        .chatbot-header {
            background: linear-gradient(45deg, #004c80, #0077b6);
            padding: 20px;
            color: white;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .chatbot-close:hover {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.4);
        }

        .chatbot-messages {
            flex: 1;
            /*padding: 20px;*/
            padding: 50px 25px 0 45px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .chatbot-input-area {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 10px;
        }

        .chatbot-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            color: #ffffff;
            outline: none;
        }

        .chatbot-input:focus {
            border-color: #00d4ff;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }

        .chatbot-send {
            background: linear-gradient(135deg, #004c80, #0077b6);
            border: none;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
        }

        .chatbot-send:hover {
            animation: subtleWobble 0.6s ease-in-out;
            box-shadow: 0 12px 32px rgba(0, 136, 204, 0.6);
        }

        .message {
            max-width: 80%;
            padding: 12px 18px;
            border-radius: 20px;
            word-wrap: break-word;
        }

        .message.user {
            background: linear-gradient(135deg, #004c80, #0077b6);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .message.bot {
            color: #ffffff;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
            text-align: left;
            line-height: 1.6;
        }


        @media (max-width: 768px) {
            .chatbot-window {
                width: calc(100vw - 40px);
                height: 70vh;
                right: -10px;
            }
            
            .chatbot-container {
                right: 20px;
                bottom: 20px;
            }
        }

        /* Footer */
        footer {
            padding: 60px 20px 40px;
            background: linear-gradient(to top, rgba(10,10,20,0.95), rgba(20,20,40,0.6));
            color: #ccd6f6;
            font-size: 15px;
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        footer p {
            color: #aab4d4;
            margin: 10px 0;
            max-width: 800px;
            max-height: 200px;
            overflow: scroll;
        }

        .footer-imprint {
            margin-top: 0;          /* aligned with Hinweis heading */
            font-size: 14px;
            color: #aab4d4;
            line-height: 1.7;
        }

        .footer-imprint a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-imprint a:hover {
            color: #ffffff;
        }

        .footer-buttons {
            margin-top: 30px;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px 0;
            animation: floatButtons 6s ease-in-out infinite;
        }

        .footer-buttons a {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            font-size: 13px;
            padding: 10px 20px;
            border-radius: 999px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(4px);
            animation: floatButtons 4s ease-in-out infinite;
            animation-delay: calc(var(--delay, 0s));
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .footer-buttons a:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
        }

        .footer-buttons a:hover {
            background: rgba(0, 212, 255, 0.15);
            color: #00d4ff;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.25);
        }


        .footer-buttons a:nth-child(1) { --delay: 0s; }
        .footer-buttons a:nth-child(2) { --delay: 0.3s; }
        .footer-buttons a:nth-child(3) { --delay: 0.6s; }
        .footer-buttons a:nth-child(4) { --delay: 0.9s; }
        .footer-buttons a:nth-child(5) { --delay: 1.2s; }
        .footer-buttons a:nth-child(6) { --delay: 1.5s; }

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
            }

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

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

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

        .message.system {
            background-color: #f0f0f0;
            color: #444;
            font-style: italic;
            padding: 6px 10px;
            border-radius: 4px;
            margin-bottom: 6px;
        }

        /* Blue Glow Animation for .chatbot-window */
        @keyframes blueGlow {
            0% {
                box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
            }
            100% {
                box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
            }
        }

    .version-label {
        font-size: 12px;
        color: #ffffff;
        margin-left: 8px;
        font-weight: 400;
        text-shadow: 0 0 4px rgba(0, 212, 255, 0.8);
        opacity: 1;
    }

    .bot-avatar {
        position: absolute;
        left: -45px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #00d4ff;
        box-shadow:
            0 0 12px rgba(0, 212, 255, 0.6),
            0 0 24px rgba(0, 212, 255, 0.4),
            inset 0 0 6px rgba(0, 212, 255, 0.3);
        background-color: rgba(0, 212, 255, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        margin: 10px;
        opacity: 0.85;
    }

    .bot-avatar:hover {
        transform: scale(1.05);
        opacity: 1;
        box-shadow:
            0 0 16px rgba(0, 212, 255, 0.9),
            0 0 32px rgba(0, 212, 255, 0.6),
            inset 0 0 8px rgba(0, 212, 255, 0.4);
    }

    @media (max-width: 480px) {
        .bot-avatar {
            width: 50px;
            height: 50px;
        }
    }

        .message.bot {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding-left: 27px;
            position: relative;
            min-width: 100%;
            background-size: 400% 400%;
            color: #ffffff;
        }

        /* Glow-Effekt für Links in Bot-Nachrichten */
        .message.bot a {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
            text-shadow: 0 0 6px rgba(0, 212, 255, 0.7);
            transition: all 0.3s ease;
        }

        .message.bot a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 212, 255, 1);
        }
        @keyframes subtleWobble {
            0%, 100% {
                transform: scale(1.1) rotate(0deg);
            }
            20% {
                transform: scale(1.1) rotate(5deg);
            }
            40% {
                transform: scale(1.1) rotate(-4deg);
            }
            60% {
                transform: scale(1.1) rotate(3deg);
            }
            80% {
                transform: scale(1.1) rotate(-2deg);
            }
        }

    .br-fix::after {
        content: "\A";
        white-space: pre;
    }

    .hidden {
      display: none !important;
    }
    
    .white {
        color: #ffffff !important;
    }

    #adminDashboard {
        display: none !important;
    }
@media (max-width: 768px) {
    #adminDashboard {
        display: none !important;
    }
}

/* Chatbot Styles (consolidated) */
  /* Loading helper */
    .is-loading{
        opacity:0.6;
        pointer-events:none;
    }
        /* Pulsing animations */
        @keyframes pulseGreen {
            0%   { transform: scale(1);   box-shadow: 0 0 0 rgba(40,167,69,0.0); }
            50%  { transform: scale(1.02); box-shadow: 0 0 12px rgba(40,167,69,0.9); }
            100% { transform: scale(1);   box-shadow: 0 0 0 rgba(40,167,69,0.0); }
        }
        @keyframes pulseRed {
            0%   { transform: scale(1);   box-shadow: 0 0 0 rgba(220,53,69,0.0); }
            50%  { transform: scale(1.02); box-shadow: 0 0 12px rgba(220,53,69,0.9); }
            100% { transform: scale(1);   box-shadow: 0 0 0 rgba(220,53,69,0.0); }
        }
        .loading-green{
            animation: pulseGreen 0.8s infinite alternate;
            background:#28a745 !important;
            color:#fff !important;
            border-color:#28a745 !important;
        }
        .loading-error{
            animation: pulseRed 0.6s 3 alternate;
            background:#dc3545 !important;
            color:#fff !important;
            border-color:#dc3545 !important;
        }
        /* Footer social buttons - Modern Fluffy Button Style */
        .footer-btn {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            border-radius: 999px;
            padding: 10px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-btn:hover {
            background: rgba(0, 212, 255, 0.15);
            box-shadow: 0 12px 32px rgba(0, 212, 255, 0.25);
            color: #00d4ff;
            transform: translateY(-2px) scale(1.03);
        }

/* (bubble, bubbleShrink keyframes and bubble pseudo/spans removed) */
    #adminDashboardHeader {
        cursor: move;
        user-select: none;
    }
    #adminDashboard {
        position: fixed;
        bottom: 10px;
        left: 10px;
    }

    /* Responsive Chatbot Window for Mobile */
    @media (max-width: 768px) {
        .chatbot-window {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            border-radius: 0 !important;
            z-index: 9999 !important;
            box-shadow: none !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
        }

        .chatbot-container .chatbot-window {
            max-width: none !important;
        }

        .bot-avatar {
            position: relative;
            top: 0;
            left: 0;
        }          

        .message.bot {
            padding-left: 0 !important;
        }
    }

    /* Smart Suggestions (chatbot) */
    .suggestion-pills{
        margin-top: 8px;
        padding: 10px 0;
        padding: 10px 10px 25px 25px;
        background-color: dodgerblue;
    }

    .suggestions-header{
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 0.9rem;
    } 

    .suggestions-container{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .suggestion-pill{
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        background: #1e1e28;
        color: #ffffff;
        font-size: 13px;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.15s ease;
    }

    .suggestion-pill:hover,
    .suggestion-pill:focus{
        background: #00d4ff;
        color: #000;
        transform: translateY(-1px);
    }

    .suggestion-pill:active{
        transform: translateY(0);
    }


        .chatbot-header {
            background: linear-gradient(45deg, #004c80, #0077b6);
            padding: 20px;
            color: white;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Tabellen nur im Chatfenster stylen */
        #chatbotMessages table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1em;
            font-size: 0.95rem;
        }

        #chatbotMessages th,
        #chatbotMessages td {
            border: 1px solid #ccc;
            padding: 8px 12px;
            text-align: left;
        }

        #chatbotMessages thead {
            background-color: #28677b;
            font-weight: bold;
        }

        #chatbotMessages tr:nth-child(even) {
            background-color: #454545;
        }

        /* Listenstruktur im Chatfenster */
        #chatbotMessages ul {
            margin: 0.5em 0 1em 1.2em;
            padding-left: 1em;
            list-style-type: disc;
        }

        #chatbotMessages ul ul {
            list-style-type: circle;
            margin-top: 0.2em;
        }

        #chatbotMessages li p {
            margin: 0;
            font-weight: bold;
        }

        #chatbotMessages p {
            margin: 0.5em 0;
        }
/* Chatbot Header Buttons */
.chatbot-header .export-btn,
.chatbot-header .clear-btn {
    color: #ffffff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.chatbot-header .export-btn:hover,
.chatbot-header .clear-btn:hover {
    color: #000;
}

@keyframes floatButtons {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-1.5deg); }
    50% { transform: translateY(0px) rotate(1.5deg); }
    75% { transform: translateY(2px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero .subtitle,
h1, h2, h3, h4, h5, h6,
.h2, .h3 {
    font-weight: 100;
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}

.pulsing {
  animation: pulseButton 1.5s ease-out infinite;
}
@keyframes rainbowBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bot-waiting-glow {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #001a00; /* dunkles Grün als Hintergrund */
  color: #cceeff;
}

/* Animierter grüner Balken als Pseudoelement */
.bot-waiting-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 4px; /* Höhe des Balkens */
  background: linear-gradient(90deg, transparent, #00ff00, transparent);
  animation: greenBarMove 2s linear infinite;
  border-radius: 2px;
  pointer-events: none;
  z-index: 10;
}

@keyframes greenBarMove {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
/* ===== Footer Meta Layout ===== */
.footer-meta {
    display: flex;
    flex-direction: row;      /* desktop/tablet: side‑by‑side */
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;  /* top‑align children */
    gap: 2rem;
    width: 100%;
}

.footer-meta > .footer-imprint,
.footer-meta > .footer-hinweis {
    flex: 1 1 300px;
}

.footer-hinweis {
    font-size: 14px;
    color: #aab4d4;
    line-height: 1.7;
}


/* Mobile: stack Impressum & Hinweis untereinander */
@media (max-width: 600px) {
    .footer-meta {
        flex-direction: column;
        gap: 1.5rem;
    }
}
/* Add top padding to all but the first .upper h3 in .contentblock-inner */
.contentblock-inner .h3 {
    padding-top: 65px;
}

.h100, .vh100 {
    height: 100%;
    margin-bottom: 100px;
}

p.form-disclaimer {
    font-size: 0.8rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #aab4d4;
  margin-top: 1rem;
  line-height: 1.5;
}


/* Add extra space below the last chat message */
#chatbotMessages div.message:last-child {
    margin-bottom: 25px;
}
/* Bot Message Reveal Animation */
.bot-message-content {
    animation: fogReveal 0.8s ease-out forwards;
    will-change: transform, opacity, filter;
}

@keyframes fogReveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Bot thinking effect */
.bot-thinking {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-style: italic;
    color: #00d4ff;
    font-weight: 300;
    opacity: 0.8;
    filter: blur(4px);
    animation: thinkingPulse 1.5s ease-in-out infinite alternate;
    text-align: center;
    font-size: 2rem;
    padding: 40px 20px;
}

@keyframes thinkingPulse {
    0% {
        filter: blur(4px);
        opacity: 0.6;
    }
    100% {
        filter: blur(1px);
        opacity: 1;
    }
}