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


        

        :root {
            --primary-dark: #0A0F1C;
            --secondary-dark: #1A2332;
            --card-dark: #232B3A;
            --accent-blue: #2196F3;
            --deep-blue: #1565C0;
            --water-blue: #03A9F4;
            --cyan-accent: #00BCD4;
            --text-light: #E8EAED;
            --text-gray: #B3B8C4;
            --text-dark: #2C3E50;
            --white: #FFFFFF;
            --gradient-blue: linear-gradient(135deg, #1565C0 0%, #2196F3 50%, #03A9F4 100%);
            --gradient-dark: linear-gradient(135deg, #0A0F1C 0%, #1A2332 100%);
            --section-padding: 100px 0;
            --border-radius: 16px;
            --shadow-elegant: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        body {
            font-family: "Mulish", sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: var(--primary-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 15, 28, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(33, 150, 243, 0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
    
        .navbar.scrolled {
            background: rgba(10, 15, 28, 0.98);
            box-shadow: var(--shadow-elegant);
            border-bottom: 1px solid rgba(33, 150, 243, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }



        .logo {
            font-size: 32px;
            font-weight: 700;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.5px;
            display: flex;
            align-items: flex-end; /* bringt das Logo weiter nach unten */
            padding-right: 20px;     /* mehr Abstand nach links */
            padding-top: 10px;    /* Logo leicht nach unten verschieben */
        

        }

        .logo img {
            height: 330px;  /* oder kleiner, je nach Bedarf */
            object-fit: contain;
            display: block;
        }


        .logo:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            font-family: "Mulish", sans-serif;
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-menu a::after {
            font-family: "Mulish", sans-serif;
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient-blue);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--water-blue);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 2px;
            background: var(--accent-blue);
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Page Sections */
        .page-section {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page-section.active {
            display: block;
        }

        /* Hero Section */
.hero {
    
    background-image: url('../images/herosection.png');

     background: var(--gradient-dark);
   
    color: var(--text-light);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;

   
    background-size: cover;      
    background-repeat: no-repeat; 
    background-position: center center; 
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(3, 169, 244, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
            animation: float 8s ease-in-out infinite;
        }

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

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: "Mulish", sans-serif;
            font-size: 4.5em;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero h1 span {
            font-family: "Mulish", sans-serif;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-family: "Mulish", sans-serif;
            font-size: 1.4em;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white);
            font-weight: 700;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        .cta-button {
            display: inline-block;
            background: var(--gradient-blue);
            color: white;
            padding: 18px 36px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(33, 150, 243, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(33, 150, 243, 0.4);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
        }

        .cta-button.secondary:hover {
            background: var(--accent-blue);
            color: white;
        }

        /* Features Section */
        .features {
            padding: var(--section-padding);
            background: var(--secondary-dark);
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            
        }

        .section-title {
            text-align: center;
            font-size: 3em;
            margin-bottom: 20px;
            color: var(--text-light);
            font-weight: 700;
            letter-spacing: -1px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 80px;
            color: var(--text-gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: var(--card-dark);
            padding: 50px 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            border: 1px solid rgba(33, 150, 243, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-blue);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(33, 150, 243, 0.3);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5em;
            box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
        }

        .feature-card h3 {
            font-family: "Mulish", sans-serif;
            font-size: 1.6em;
            margin-bottom: 20px;
            color: var(--text-light);
            font-weight: 600;
        }

        .feature-card p {
            font-family: "Mulish", sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 15px;
        }

        /* Content Sections */
        .content-section {
            padding: var(--section-padding);
            position: relative;

        }

        .content-section:nth-child(even) {
            background: var(--secondary-dark);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-family: "Mulish", sans-serif;
            font-size: 3em;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.3em;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

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

        .content-text h3 {
            font-family: "Mulish", sans-serif;
            font-size: 2.2em;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .content-text p {
            font-family: "Mulish", sans-serif;
            margin-bottom: 25px;
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.7;
        }

        .content-text ul {
            font-family: "Mulish", sans-serif;
            margin: 30px 0;
            padding-left: 0;
            list-style: none;
        }

        .content-text li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: var(--text-gray);
        }

        .content-text li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent-blue);
            font-size: 12px;
        }

.image-placeholder {
    /* Behalte die bestehenden Eigenschaften deines Containers bei */
    background: var(--gradient-blue);
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1em;
    text-align: center;
    padding: 10px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden; 
    width: 100%; /* Dies ist hier in Ordnung, wenn der Container 100% Breite haben soll */
}

/* Füge DIESEN neuen Regelblock für dein BILD (img-Tag) hinzu */
.image-placeholder img {
    width: 100%;       /* Das Bild füllt die Breite des Containers */
    height: 100%;      /* Das Bild füllt die Höhe des Containers */
    object-fit: cover; /* SKALIERT UND SCHNEIDET AB, um den Container zu füllen */
    /* ODER: object-fit: contain; um das ganze Bild zu sehen (mit Rändern) */
    display: block;    /* Verhindert zusätzlichen Leerraum */
}

.image-placeholder::before {
    /* Dein existing before-Pseudo-Element */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .product-card {
            background: var(--card-dark);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(33, 150, 243, 0.1);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(33, 150, 243, 0.3);
        }

            .product-image {
            height: 250px; /* Feste Höhe, wie von dir definiert */
            background: var(--gradient-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1em;
            position: relative;
            overflow: hidden; /* Behält bei, dass alles Überstehende innerhalb des Containers abgeschnitten wird */
            /* Füge bei Bedarf 'width: 100%;' hinzu, wenn der Container die volle Breite einnehmen soll,
            oder eine feste Breite, wenn er nicht responsiv sein soll. */
        }

        /* Neuer Regelblock für dein BILD (img-Tag) innerhalb des .product-image Containers */
            .product-image img {
            width: 100%;       /* Das Bild füllt die gesamte Breite des Containers */
            height: 100%;      /* Das Bild füllt die gesamte Höhe des Containers */
            object-fit: cover; /* SKALIERT das Bild so, dass es den Container abdeckt,
                                schneidet dabei aber Ränder ab, um das Seitenverhältnis zu erhalten.
                                Dies führt zum "Zoom"-Effekt, wie besprochen. */
            /* Wenn du das komplette Bild sehen willst (mit möglichen Rändern), verwende stattdessen: */
            /* object-fit: contain; */
            display: block;    /* Entfernt zusätzlichen Leerraum unter dem Bild */
        }

            .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
        }   

        .product-content {
            padding: 40px;
        }

        .product-content h3 {
            font-family: "Mulish", sans-serif;
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.4em;
            font-weight: 600;
        }

        .product-content p {
            font-family: "Mulish", sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* CO2 Neutrality Section */
        .co2-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .stat-card {
            background: var(--card-dark);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(33, 150, 243, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center; /* horizontal */
            align-items: center;     /* vertikal */
            text-align: center;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-blue);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-number {
            font-size: 3.5em;
            font-weight: 700;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label { 
            font-family: "Mulish", sans-serif;
            color: var(--text-gray);
            font-size: 25px;
            font-weight: 600;
        }



        
        /* Contact Form */

        .contact-wrapper {
    display: flex;
    justify-content: center;  /* horizontal */
    align-items: center;      /* vertikal */
    height: 100vh;            /* gesamte Bildschirmhöhe */
    background: var(--background-dark); /* z. B. dunkler Hintergrund */
    padding: 40px 20px;       /* Abstand auf kleineren Geräten */
    box-sizing: border-box;
}

       .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* gesamte Höhe des Viewports */
    padding: 40px 20px;
    background: var(--background-dark); /* z. B. ein dunkler Hintergrund */
}

.contact-form {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    background: var(--card-dark);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(33, 150, 243, 0.1);
}
        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(33, 150, 243, 0.2);
            border-radius: 12px;
            font-size: 16px;
            background: var(--primary-dark);
            color: var(--text-light);
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

        .submit-btn {
            background: var(--gradient-blue);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 8px 32px rgba(33, 150, 243, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(33, 150, 243, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            border-top: 1px solid rgba(33, 150, 243, 0.1);
            color: var(--text-light);
            padding: 80px 0 40px;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
            text-align: left;
        }

        .footer-section h3 {
            font-family: "Mulish", sans-serif;
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.3em;
            font-weight: 600;
        }

        .footer-section p {
            font-family: "Mulish", sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section a {
            font-family: "Mulish", sans-serif;
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-section a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
        }

        .social-links a {
            font-family: "Mulish", sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--card-dark);
            border-radius: 50%;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(33, 150, 243, 0.2);
        }

        .social-links a:hover {
            background: var(--gradient-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
        }

        /* Newsletter */
        .newsletter {
            background: var(--gradient-blue);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin: 80px 0 0;
        }

        .newsletter h3 {
            font-family: "Mulish", sans-serif;
            font-size: 2.2em;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .newsletter p {
            font-family: "Mulish", sans-serif;
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 15px;
            background: rgba(255,255,255,0.1);
            padding: 8px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            background: rgba(255,255,255,0.9);
            color: var(--text-dark);
        }

        .newsletter-form button {
            background: var(--primary-dark);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--secondary-dark);
            transform: scale(1.05);
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in {
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-container,
            .container,
            .hero-content,
            .footer-content {
                padding: 0 30px;
            }

            .hero h1 {
                font-size: 3.5em;
            }

            .two-column {
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

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

            .nav-container,
            .container,
            .hero-content,
            .footer-content {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 2.8em;
            }

            .hero p {
                font-size: 1.2em;
            }

            .section-title {
                font-size: 2.2em;
            }

            .two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .co2-stats {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .newsletter-form {
                flex-direction: column;
                border-radius: 16px;
                padding: 15px;
            }

            .newsletter-form input,
            .newsletter-form button {
                border-radius: 12px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-form {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2em;
            }

            .section-title {
                font-size: 1.8em;
            }

            .co2-stats {
                grid-template-columns: 1fr;
            }

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

            .features-grid .feature-card {
                min-width: unset;
            }
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
  

 /* Mobile Menü standardmäßig versteckt */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px;
    border-top: 1px solid rgba(33, 150, 243, 0.2);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }
}

/* Animation (optional) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  /* Kontaktformular: weiter links & besser zentriert */
  .contact-form {
    max-width: 100%;
    padding: 30px 20px;
    margin: 0 10px;
  }

  /* Interaktive Map: kleiner und zentriert */
  .contact-map,
  .contact-map iframe {
    width: 80% !important;
    height: 250px !important;
    margin: 20px auto 0;
    border-radius: 12px;
  }
}

.impressum{
    font-family: "Mulish", sans-serif;
    font-size: 20px;
}