        :root {
            /* Deine Firmenfarben - UPDATED (Vibrant) */
            --primary: #00204a;
            /* Tieferes, kräftiges Navy-Blau */
            --accent: #0074e4;
            /* Leuchtendes, modernes Blau (statt blass) */
            --gold: #f0c419;
            /* Satteres, glänzendes Gold */

            /* Text & BG */
            --text: #222222;
            /* Etwas dunkleres Grau für besseren Kontrast */
            --light-bg: #f4f7fa;
            /* Kühles, leicht bläuliches Grau */
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .logo img {
            height: 60px;
            width: auto;
            margin-right: 10px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: 0.3s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }

        .btn-header {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            border: 2px solid var(--primary);
        }

        .btn-header:hover {
            background: white;
            color: var(--primary);
        }

        /* Mobile Menu Button (Hidden on Desktop) */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(0, 43, 92, 0.85), rgba(0, 43, 92, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .btn-hero {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            margin: 10px;
            transition: 0.3s;
        }

        .btn-hero-primary {
            background: var(--gold);
            color: var(--primary);
        }

        .btn-hero-primary:hover {
            background: white;
        }

        .btn-hero-secondary {
            border: 2px solid white;
            color: white;
        }

        .btn-hero-secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* --- SECTIONS GENERAL --- */
        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 10px auto 0;
        }

        /* --- LEISTUNGEN (SERVICES) --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: 0.3s;
            border-bottom: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-bottom-color: var(--gold);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* --- ÜBER UNS --- */
        .about-section {
            background: var(--light-bg);
        }

        .about-content {
            display: flex;
            align-items: flex-start;
            gap: 50px;
            flex-wrap: wrap;
            /* Changed alignItems to start, image removed */
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        /* Image removed */

        .check-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .check-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .check-list i {
            color: var(--gold);
            margin-right: 10px;
        }

        /* --- KARRIERE --- */
        .career-section {
            background: var(--primary);
            color: white;
            text-align: center;
        }

        .career-section h2 {
            color: white;
            border-color: white;
        }

        .career-section h2::after {
            background: white;
        }

        .job-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-apply {
            display: inline-block;
            background: var(--gold);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
        }

        /* --- KONTAKT --- */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            background: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 8px;
        }

        .contact-form {
            flex: 1.5;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--gold);
            margin-right: 15px;
            margin-top: 5px;
        }

        .info-item p {
            margin: 0;
            line-height: 1.6;
        }

        .info-item strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        form input,
        form textarea,
        form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            box-sizing: border-box;
        }

        form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            width: 100%;
            transition: 0.3s;
        }

        form button:hover {
            background: var(--primary);
        }

        /* GDPR Checkbox Style */
        .gdpr-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #666;
        }

        .gdpr-check input {
            width: auto;
            margin-top: 5px;
        }

        /* --- FOOTER --- */
        footer {
            background: #1a1a1a;
            color: #888;
            padding: 40px 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        footer a {
            color: #888;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            color: white;
        }

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

            .menu-toggle {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .about-content {
                flex-direction: column-reverse;
            }
        }