        :root {
            --primary-color: #0b3f70;
            --secondary-color: #6c757d;                                                                                                                                                                                                                                                                                     
            --background-color: #f8f9fa;
            --text-color: #212529;
            --accent-color: #28a745;
            --shadow: 0 2px 4px rgba(0,0,0,0.1);
            --border-radius: 8px;
            color-scheme: light;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            scroll-behavior: smooth;
        }

        html {
            background-color: var(--background-color);
        }

        header {
            position: sticky;
            top: 0;
            background: transparent;
            z-index: 1000;
            padding: 0.5rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        nav {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.65);
            border-radius: 10px;
            padding: 0.5rem 1rem;
        }

        #hero-wrapper {
            position: relative;
            min-height: 100vh;
            background: center/cover no-repeat fixed;
            transition: background-image 400ms ease;
        }

        #hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: transparent;
            color: white;
            padding: 6rem 1rem;
            min-height: 100vh;
        }
            display: flex;
            justify-content: flex-start;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo img {
            max-height: 50px;
            width: auto;
            display: block;
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            white-space: nowrap;
            line-height: 1.2;
        }

        .logo-sub {
            font-size: 0.8rem;
            font-weight: 500;
            display: block;
        }

        .nav-links {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            list-style: none;
            gap: 0.5rem;
            margin-left: 0;
            flex-wrap: nowrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover, .nav-links a:focus {
            background-color: var(--primary-color);
            color: white;
        }

        .nav-links .nav-social a {
            padding: 0.5rem 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        section {
            min-height: 100vh;
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Kontakt soll direkt vor dem Footer enden */
        #contact {
            min-height: auto;
            padding-bottom: 1rem;
        }

        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 6rem 1rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            background-color: white;
            color: var(--primary-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: var(--background-color);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: rgba(255,255,255,0.85);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .service-images {
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .service-images img {
            width: 100%;
            border-radius: 6px;
            object-fit: cover;
            height: 120px;
        }

        @media (max-width: 768px) {
            .service-images {
                grid-template-columns: 1fr;
            }

            .service-images img {
                height: auto;
                object-fit: contain;
            }
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .about, .contact {
            text-align: center;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text, .about-media {
            text-align: left;
        }

        .about-media img {
            width: 100%;
            border-radius: var(--border-radius);
            object-fit: cover;
        }

        .about-media .img-caption {
            margin-top: 0.75rem;
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .about h2, .contact h2 {
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-text, .about-media {
                text-align: center;
            }

            .logo-text {
                font-size: 0.8rem;
                white-space: normal;
            }

            .logo-sub {
                font-size: 0.8rem;
            }
        }

        form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        input, textarea {
            padding: 1rem;
            border: 1px solid var(--secondary-color);
            border-radius: var(--border-radius);
            font-family: inherit;
        }

        button[type="submit"] {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #0056b3;
        }

        .contact-table {
            width: 100%;
            max-width: 700px;
            margin: 0 auto 2rem;
            border-collapse: collapse;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-table thead {
            background-color: var(--primary-color);
            color: white;
        }

        .contact-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .contact-table td {
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            text-align: left;
        }

        .contact-table tbody tr:last-child td {
            border-bottom: none;
        }

        .contact-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .contact-table a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-table a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .contact-email {
            margin-top: 2rem;
            font-size: 1.1rem;
        }

        .contact-email a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-email a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 2rem;
            align-items: start;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info {
            text-align: left;
        }

        .contact-people {
            text-align: left;
        }

        .contact-people .contact-table {
            margin: 0;
            max-width: none;
        }

        @media (min-width: 769px) {
            /* Desktop: Name/Telefon nicht umbrechen */
            .contact-people .contact-table th:nth-child(1),
            .contact-people .contact-table td:nth-child(1),
            .contact-people .contact-table th:nth-child(2),
            .contact-people .contact-table td:nth-child(2) {
                white-space: nowrap;
            }
        }

        .contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .contact-info > p {
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .contact-map {
            width: 100%;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-map iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Mobile: Tabelle als "Cards" statt Scrollen */
            .contact-table-wrap {
                width: 100%;
            }

            .contact-table {
                width: 100%;
                min-width: 0;
            }

            .contact-table thead {
                display: none;
            }

            .contact-table tbody,
            .contact-table tr,
            .contact-table td {
                display: block;
                width: 100%;
            }

            .contact-table tbody tr {
                background-color: white;
                border-radius: var(--border-radius);
                overflow: hidden;
                box-shadow: var(--shadow);
                margin-bottom: 1rem;
            }

            .contact-table td {
                border-bottom: 1px solid #e9ecef;
                padding: 0.9rem 1rem;
                text-align: left;
                white-space: normal;
            }

            .contact-table td:last-child {
                border-bottom: none;
            }

            .contact-table td::before {
                content: attr(data-label);
                display: block;
                font-weight: 700;
                color: var(--primary-color);
                margin-bottom: 0.25rem;
            }

            .contact-map iframe {
                height: 350px;
            }

            .logo-text {
                font-size: 0.7rem;
            }

            .logo-sub {
                font-size: 0.7rem;
            }

            .nav-links {
                position: fixed;
                inset: 0;
                transform: none;
                background-color: transparent;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 90px;
                padding-left: 0;
                padding-right: 0;
                transform: translateX(-100%);
                transition: transform 0.3s;
                z-index: 2000;
                opacity: 0;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                pointer-events: auto;
                background-color: rgba(0, 0, 0, 0.35);
            }

            .nav-links a {
                color: white;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
            }

            .nav-links a:hover, .nav-links a:focus {
                background-color: rgba(255, 255, 255, 0.16);
                color: white;
            }

            .hamburger {
                display: flex;
                position: relative;
                z-index: 3000;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }

        /* Barrierefreiheit */
        a:focus, button:focus, input:focus, textarea:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        footer {
            text-align: center;
            padding: 1.5rem 1rem;
            margin-top: 0.5rem;
        }

        footer p {
            margin: 0;
        }