body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        
        
        .green-content {
            background: #05664b;
            width: 100%;
            min-height: 100vh;
            box-sizing: border-box;
            padding-bottom: 0;
            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 */
            }
            
            .gestaltung-block {
                margin-top: 0 !important;
            }
        }
        .gestaltung-block {
            background: #067757;
            color: #fff;
            padding: 48px 32px 40px 32px;
            margin: 48px auto 0 auto;
            max-width: 1200px;
            border-radius: 18px;
            font-size: 1.15rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        .gestaltung-block h2 {
            margin-top: 0;
            margin-bottom: 32px;
            font-size: 2.2rem;
            font-weight: bold;
            text-align: left;
        }
        .gestaltung-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: flex-start;
            justify-content: flex-start;
        }
        .gestaltung-img-col {
            flex: 0 0 320px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-top: 8px;
        }
        .gestaltung-img {
            width: 320px;
            height: 240px;
            object-fit: cover;
            border-radius: 18px;
            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;
        }
        .gestaltung-img:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 32px rgba(6,119,87,0.18);
            z-index: 2;
        }
        .gestaltung-text-col {
            flex: 1 1 400px;
            min-width: 260px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .gestaltung-text {
            font-size: 1.13rem;
            line-height: 1.7;
            margin-bottom: 36px;
        }
        .gestaltung-btn {
            display: inline-block;
            background: #fff;
            color: #067757;
            border: 2px solid #067757;
            border-radius: 8px;
            padding: 14px 38px;
            font-size: 1.15rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.18s, color 0.18s;
            margin-top: 8px;
        }
        .gestaltung-btn:hover {
            background: #067757;
            color: #fff;
            border: 2px solid #fff;
        }
        .gestaltung-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;
        }
        .gestaltung-lightbox.active {
            display: flex;
        }
        .gestaltung-lightbox-img {
            max-width: 80vw;
            max-height: 80vh;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.25);
        }
        .gestaltung-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) {
          .gestaltung-block {
            margin: 0 auto;
            padding: 32px 24px 32px 24px;
          }
          
          .gestaltung-flex {
            flex-direction: column;
            align-items: center;
            gap: 32px;
          }
          
          .gestaltung-img-col {
            align-items: center;
            width: 100%;
          }
          
          .gestaltung-img {
            width: 85vw;
            height: 50vw;
            max-width: 380px;
            max-height: 280px;
            margin-bottom: 16px;
          }
          
          .gestaltung-text-col {
            width: 100%;
            text-align: center;
          }
        }
        @media (max-width: 600px) {
          .gestaltung-block {
            padding: 24px 16px 24px 16px;
            margin: 0;
          }
          
          .gestaltung-block h2 {
            font-size: 1.8rem;
            margin-bottom: 24px;
          }
          
          .gestaltung-img {
            width: 90vw;
            height: 55vw;
            max-width: 350px;
            max-height: 250px;
            margin-bottom: 12px;
          }
          
          .gestaltung-text {
            font-size: 1rem;
            line-height: 1.6;
          }
        }
        @media (min-width: 601px) {
          .footer {
            margin-top: -1px;
          }
        }

        /* Vorher-Nachher Vergleich Styles */
        .comparison-block {
            background: #067757;
            color: #fff;
            padding: 48px 32px 40px 32px;
            margin: 48px auto 48px auto;
            width: 95vw;
            max-width: 1400px;
            border-radius: 18px;
            font-size: 1.15rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        
        .comparison-block h2 {
            margin-top: 0;
            margin-bottom: 32px;
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
        }
        
        .comparison-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
        }
        
        .image-comparison {
            position: relative;
            width: 100%;
            max-width: 1300px;
            height: 500px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
            cursor: ns-resize;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
        
        .comparison-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            pointer-events: none;
        }
        
        .after-img {
            z-index: 1;
        }
        
        .comparison-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            overflow: hidden;
            z-index: 2;
        }
        
        .before-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
        
        .comparison-slider {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: #fff;
            z-index: 3;
            transform: translateY(-50%);
        }
        
        .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            cursor: ns-resize;
        }
        
        .slider-handle::before {
            content: '';
            position: absolute;
            top: 30%;
            left: 50%;
            width: 8px;
            height: 8px;
            border-left: 2px solid #067757;
            border-top: 2px solid #067757;
            transform: translateX(-50%) rotate(45deg);
        }
        
        .slider-handle::after {
            content: '';
            position: absolute;
            bottom: 30%;
            left: 50%;
            width: 8px;
            height: 8px;
            border-right: 2px solid #067757;
            border-bottom: 2px solid #067757;
            transform: translateX(-50%) rotate(45deg);
        }
        
        .comparison-labels {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            min-width: 120px;
        }
        
        .label-before {
            color: #fff;
        }
        
        .label-after {
            color: #fff;
        }
        
        .label-arrow {
            color: #fff;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        @media (max-width: 900px) {
            .comparison-block {
                padding: 32px 24px;
            }
            
            .comparison-container {
                flex-direction: column;
                gap: 16px;
            }
            
            .image-comparison {
                height: 300px;
                max-width: 90vw;
            }
            
            .comparison-labels {
                flex-direction: row;
                justify-content: space-between;
                width: 90vw;
                min-width: auto;
            }
            
            .label-arrow {
                transform: rotate(90deg);
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .comparison-block {
                padding: 24px 16px;
                margin: 24px auto 0 auto;
            }
            
            .image-comparison {
                height: 250px;
                max-width: 95vw;
            }
            
            .comparison-labels {
                width: 95vw;
            }
            
            .comparison-block h2 {
                font-size: 1.8rem;
                margin-bottom: 24px;
            }
            
            /* Zentriert die Hauptüberschrift nur in der mobilen Ansicht */
            .gestaltung-block h2 {
                text-align: center;
            }
        }