body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #fff;
        }
        
       
        
        .green-content {
            background: #05664b;
            flex: 1 0 auto;
            width: 100%;
            min-height: 500px;
            padding-bottom: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }
        
        /* Mobile Optimierung für nahtlosen Übergang */
        @media (max-width: 1024px) {
            .green-content {
                margin-top: 0 !important;
                padding-top: 20px !important; /* Kleiner Abstand nach oben */
            }
            
            .objekte-block {
                margin-top: 0 !important;
            }
        }
        .objekte-block {
            background: #067757;
            color: #fff;
            padding: 56px 40px 48px 40px;
            margin: 48px auto 0 auto;
            max-width: 1400px;
            border-radius: 18px;
            font-size: 1.15rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        .objekte-block h2 {
            margin-top: 0;
            margin-bottom: 36px;
            font-size: 2.4rem;
            font-weight: bold;
            text-align: left;
        }
        .objekte-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: flex-start;
            justify-content: flex-start;
        }
        .objekte-gallery {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .objekte-gallery-row {
            display: flex;
            gap: 22px;
        }
        .objekte-img {
            width: 180px;
            height: 135px;
            object-fit: cover;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
            background: #fff;
            cursor: pointer;
            transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
            border: 3px solid #fff;
        }
        .objekte-img:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 32px rgba(6,119,87,0.18);
            z-index: 2;
        }
        .objekte-img-large {
            width: 382px;
            height: 170px;
        }
        .objekte-text-col {
            flex: 1 1 400px;
            min-width: 260px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .objekte-text {
            font-size: 1.13rem;
            line-height: 1.7;
            margin-bottom: 36px;
        }
        .objekte-lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0; top: 0; width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.85);
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .objekte-lightbox.active {
            display: flex;
        }
        .objekte-lightbox-img {
            max-width: 80vw;
            max-height: 80vh;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.25);
        }
        .objekte-close {
            position: absolute;
            top: 32px;
            right: 48px;
            color: #fff;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10;
            user-select: none;
        }
        @media (max-width: 900px) {
          .objekte-block {
            margin: 0 auto;
            padding: 32px 24px 32px 24px;
          }
          
          .objekte-block h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 24px;
          }
          
          .objekte-flex {
            flex-direction: column;
            align-items: center;
            gap: 32px;
          }
          
          .objekte-gallery {
            align-items: center;
            width: 100%;
          }
          
          .objekte-gallery-row {
            justify-content: center;
            gap: 12px;
          }
          
          .objekte-img, .objekte-img-large {
            width: 42vw;
            max-width: 180px;
          }
          .objekte-img {
            height: 30vw;
            max-height: 130px;
          }
          .objekte-img-large {
            height: 35vw;
            max-height: 150px;
            width: 90vw;
            max-width: 380px;
          }
          
          .objekte-text-col {
            width: 100%;
            text-align: center;
          }
        }
        @media (max-width: 600px) {
          .objekte-block {
            padding: 24px 16px 24px 16px;
            margin: 0;
          }
          
          .objekte-block h2 {
            font-size: 1.8rem;
          }
          
          .objekte-gallery-row {
            flex-direction: column;
            gap: 16px;
          }
          
          .objekte-img, .objekte-img-large {
            width: 85vw;
            max-width: 320px;
          }
          .objekte-img {
            height: 45vw;
            max-height: 180px;
          }
          .objekte-img-large {
            height: 50vw;
            max-height: 200px;
          }
          
          .objekte-text {
            font-size: 1rem;
            line-height: 1.6;
          }
        }