html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #fff;
        }
        
        /* Neue Styles für den grünen Bereich und den Unternehmensblock */
        .green-content {
            background: #05664b;
            flex: 1 0 auto;
            width: 100%;
            min-height: 0;
            padding-bottom: 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .unternehmen-block {
            background: #067757;
            color: #fff;
            padding: 40px 24px 32px 24px;
            margin: 40px auto 0 auto;
            max-width: 1100px;
            border-radius: 18px;
            font-size: 1.15rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        .unternehmen-block h2 {
            margin-top: 0;
            margin-bottom: 28px;
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
        }
        .unternehmen-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 36px;
            align-items: flex-start;
            justify-content: center;
        }
        .unternehmen-bilder {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-start;
            min-width: 180px;
        }
        .unternehmen-img {
            width: 180px;
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        }
        .unternehmen-text {
            flex: 1 1 350px;
            min-width: 250px;
            font-size: 1.08rem;
            line-height: 1.6;
        }
        .unternehmen-name {
            display: block;
            margin-top: 8px;
            font-size: 1.08rem;
            color: #fff;
            font-weight: 500;
            text-align: center;
            letter-spacing: 0.5px;
        }
        @media (max-width: 900px) {
            .unternehmen-flex {
                flex-direction: column;
                align-items: center;
            }
            .unternehmen-bilder {
                flex-direction: row;
                gap: 18px;
                justify-content: center;
                min-width: 0;
            }
            .unternehmen-text {
                min-width: 0;
            }
        }
        
        /* Mobile Optimierung für oberen Abstand */
        @media (max-width: 1024px) {
            .green-content {
                padding-top: 20px !important; /* Kleiner Abstand nach oben */
            }
        }