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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            min-height: 100vh;
            background: white;
            color: black;
            padding-bottom: 100px;
            line-height: 1.6;
        }

        /* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-color: #fff;
    overflow: hidden;
}

.hero-logo {
    width: 70%;
    max-width: 600px;
    margin-top: -30px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 600px) {
    .hero {
        height: 300px;
    }

    .hero-logo {
        width: 100% !important;
        padding: 0 1rem;
        margin-top: -50px;
    }

    .hero-image {
        object-fit: contain !important;
        object-position: center bottom !important;
    }
}

@media (min-width: 1000px) {
    .hero {   height: 800px;}
    }
@media (min-width: 1600px) {
    .hero {   height: 1000px;}
    }



        .hero-image {
            width: 100%;
            height: 100%;
            object-fit:cover;
            position: absolute;
            inset: 0;   
        }
.hero-lane {
    height: 50px;
    background-color: #e5e6d8;
}

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 100px auto 0;
            text-align: center;
            padding-top: 0;
            padding-left: 1.5rem;
            padding-right: 1.5rem;

        }

        .hero h1 {
            font-size: 3.75rem;
            font-weight: 300;
            color: black;
            margin-bottom: 1rem;
            letter-spacing: 0.15em;
        }

        .hero p {
            font-size: 1.5rem;
            font-weight: 300;
            font-style: italic;
            color: black;
        }

        /* Project Details Section */
        .project-details {
            background-color: #798e34;
        }

        .project-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            width: 100%;
            background-color: #798e34;
            
        }

        .project-image {
            position: relative;
            height: 500px;
            overflow: hidden;
                       background-color: #798e34;
            
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-text {
            background-color: #798e34;
            height: 500px;
            display: flex;
            align-items: center;
            padding: 0 3rem;
        }
@media (max-width: 768px) {
    .project-text {height: 300px!important;padding: 0 2rem;}
    .project-text h2 {padding-top:150px;}
}

        .project-text h2 {
            font-size: 3rem;
            font-weight: 500;
            color: white;
            
        }



.description {max-width: 80%;}

        .project-text .description {
            font-size: 1.25rem;
            color: white;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .project-text .description strong {
            font-weight: 500;
        }

        .project-location h3 {
            font-size: 2rem;
            font-weight: 500;
            
            color: white;
            margin-bottom: 0.75rem;
            padding-top: 1.5rem;
        }

        .project-location p {
            font-size: 1.25rem;
            color: white;
            font-weight: 300;
        }
@media (max-width: 768px) {.project-text {margin-bottom:150px;}}

        /* Companies Section */
        .companies {
            padding: 4rem 3rem;
            background-color: #e5e6d8;
        }
@media (max-width: 768px) {
    .companies {padding: 4rem  2rem;}}

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

        .companies-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .company-block {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .company-block h3 {
            font-size: 1.25rem;
            font-weight: 500;
            color: black;
            margin-bottom: 0rem;
        }

        .company-logo {
            width: 192px!important;
            height: 192px!important;
            
            background: white;
            border: 1px solid #d1d5db;
/*            display: flex;*/
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

/*
        .company-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
*/

        .company-info p {
            margin-bottom: 0.75rem;
        }

        .company-name {
            font-size: 1.5rem;
            font-weight: 500;
            color: black;
        }

        .company-subtitle {
            font-size: 1.25rem;
            font-weight: 500;
            color: black;
        }

        .company-address {
            font-size: 1.125rem;
            color: black;
            font-weight: 300;
            margin-top: 1rem;
        }

        .company-link {
            font-size: 1.125rem;
            color: black;
            font-weight: 300;
            text-decoration: underline;
            display: block;
        }

        /* Funding Section */
        .funding {
            padding: 5rem 3rem;
            background: white;
        }

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

@media (max-width: 768px) {.funding-container {max-width: none;}}

        .funding-text {
            text-align: center;
            margin-bottom: 3rem;
        }

        .funding-text p {
            font-size: 1.25rem;
            color: black;
            font-weight: 300;
        }

        .funding-logos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        .funding-logo {
            width: 100%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
/*@media (max-width: 768px) {.funding-container {max-width: none;}}*/

@media (max-width: 1000px) {
    .funding-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .funding-logos {
        grid-template-columns: 1fr;
    }
}

        .funding-logo-text {
            text-align: center;
        }

        .funding-logo-text .title {
            font-size: 0.75rem;
            font-weight: 500;
            color: black;
            margin-bottom: 0.25rem;
        }

        .funding-logo-text .subtitle {
            font-size: 0.75rem;
            font-weight: 300;
            color: black;
        }

        .funding-logo-text .bank {
            font-size: 1.25rem;
            font-weight: 500;
            color: black;
        }

.impressum p {margin-top:70px;font-size: 0.8rem;color: black;padding: 0 2rem;text-align: center;}
.impressum p a {text-decoration: none;color: black;}

        /* Footer - Fixed at bottom */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 2rem;
        }

        .footer-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: black;
            letter-spacing: 0.15em;
        }

        .footer-claim {
            font-size: 1.25rem;
            font-weight: 300;
            color: black;
            letter-spacing: 0.2em;
        }


        .color-stripe {
            display: flex;
            height: 25px;
        }

        .color-stripe div {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.25rem;
            }

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

            .project-image,
            .project-text {
                height: 400px;
            }

            .companies-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .funding-logos {
                grid-template-columns: 1fr;

                gap: 1.5rem;
            }

            .footer-brand,
            .footer-claim {
                font-size: 0.8rem;
            }

            .footer-content {
                padding: 0.75rem 1rem;
            }
        }/* CSS Document */

