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

        body {
            font-family: 'PT Sans', Helvetica, Arial, sans-serif;
            background-color: #2a2a2a;
            color: #d8d8d8;
        }

        .container {
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
        }

        header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: end;
            background-color: #1f1f1f;
            margin-bottom: 30px;
        }

        .Logo {
            position: relative;
            opacity: 0.8;
            height: 275px;
            overflow: hidden;
        }

        .Titel {
            margin-left: 30px;
        }


        h1 {
            position: absolute;
            left: -9999px;
        }

        .kurzInhalt {
            width: 85%;
            margin: 0 auto 30px auto;
            padding: 25px;
            text-align: center;
            line-height: 25px;
            font-size: 13pt;
        }

        section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

        .Daten {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 20px;
        }

        .Daten div {
            margin-bottom: 50px;
            line-height: 25px;
        }

        .Leistungen,
        .Technik {
            flex: 1 1 calc(50% - 15px);
            min-width: 280px;
        }

        .Leistungen{
            text-align: center;
        }

        .Technik{
            text-align: center;
        }

        .Tech {
            width: 100%;
            margin-top: 20px;
            line-height: 25px;
            text-align: center;
        }

        h2 {
            font-size: 16pt;
            margin-bottom: 25px;
            margin-top: 35px;

        }

        .slider-wrapper {
            position: relative;
            width: 100%;
        }

        .Bilderslide {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 0 20px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .Bilderslide::-webkit-scrollbar {
            display: none;
        }

        .Beschreibungslide {
            flex: 0 0 auto;
            scroll-snap-align: center;
        }

        .Beschreibungslide img {
            height: 200px;
            width: auto;
            object-fit: cover;
            display: block;
        }

        .nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            font-size: 30px;
            padding: 10px 15px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .slider-wrapper:hover .nav {
            opacity: 1;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .Zusaetzliches {
            text-align: center;
            margin: 0 60px 50px 60px;
            line-height: 25px;
        }

        footer {
            background-color: #1f1f1f;
            text-align: center;
            padding: 20px;
            color: #d8d8d8;
        }

        .Links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .Links a {
            display: inline-flex;
        }

        .Impressum p {
            display: inline-block;
            padding: 0 10px;
            margin-bottom: 10px;
            font-size: small;
        }

@media screen and (min-width: 600px) {

    header {
        flex-direction: row-reverse;
    }

}

        @media screen and (max-width: 600px) {

            .Titel img {
                width: 265px;
                margin-top: 40px;
            }

            .Logo {
                position: fixed;
                top: 200px;
                margin-left: auto;
                margin-right: auto;
                height: auto;
                z-index: 0;
                opacity: 0.03;
                width: 100%;
            }

            .Logo img {
                width: 100%;
            }

            .Daten,
            .Zusaetzliches {
                font-size: 11pt;
            }
        }
