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: #05664b;
        }

        
    
        .green-content {
            background: #05664b;
            flex: 1 0 auto;
            width: 100%;
            min-height: 500px;
            padding: 40px 20px;
        }
        
        .welcome-title {
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            margin-top: 0;
        }
        
        .welcome-subtitle {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 500;
            text-align: center;
            margin-bottom: 40px;
            margin-top: -10px;
        }
        
        .description-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
        }
        
        .description-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .description-text p:last-child {
            margin-bottom: 0;
            font-weight: 500;
        }
        
        .baustellen-title {
            color: #fff;
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-top: 100px;
            margin-bottom: 40px;
        }
        
        .instagram-title {
            color: #fff;
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-top: 200px;
            margin-bottom: 60px;
        }
        
        .qr-section {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            display: block;
            border-radius: 12px;
        }
        
        .qr-text {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 500;
            text-align: center;
            margin-top: -15px;
            margin-bottom: 10px;
        }
        
        .oder-text {
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            font-family: 'Bahnschrift', sans-serif;
            text-align: center;
            margin: 10px 0;
        }
        
        .instagram-button {
            background: #fff;
            color: #067757;
            border: 2px solid #067757;
            border-radius: 8px;
            padding: 12px 24px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .instagram-button:hover {
            background: #067757;
            color: #fff;
            text-decoration: none;
        }
        
        .service-box {
            width: 900px;
            max-width: 85%;
            min-height: 450px;
            background: #067757;
            border-radius: 15px;
            padding: 50px;
            margin: 40px 0;
            display: flex;
            align-items: center;
            gap: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
        }
        
        /* Versetztes Layout - mehr in den Raum */
        .service-box:nth-child(2) {
            margin-left: 10%;
            margin-right: auto;
        }
        
        .service-box:nth-child(3) {
            margin-left: auto;
            margin-right: 10%;
        }
        
        .service-box:nth-child(4) {
            margin-left: 10%;
            margin-right: auto;
        }
        
        .service-box:nth-child(5) {
            margin-left: auto;
            margin-right: 10%;
        }
        
        .service-image-left,
        .service-image-right {
            flex: 0 0 320px;
            height: 240px;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .service-img:hover {
            transform: scale(1.05);
        }        .service-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-text {
            font-size: 1.2rem;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .service-button {
            background: #fff;
            color: #067757;
            border: 2px solid #067757;
            border-radius: 8px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        
        .service-button:hover {
            background: #067757;
            color: #fff;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-box {
                width: 95%;
                margin-left: auto !important;
                margin-right: auto !important;
                flex-direction: column;
                text-align: center;
            }
            
            .service-image-left,
            .service-image-right {
                flex: none;
                width: 100%;
                margin-bottom: 20px;
            }
            
            .service-content {
                align-items: center;
            }
            
            .service-button {
                align-self: center;
            }
        }
        
        /* Modal für Bildvergrößerung */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }
        
        .modal-content {
            display: block;
            margin: auto;
            max-width: 90%;
            max-height: 90%;
            margin-top: 5%;
            border-radius: 12px;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close:hover {
            color: #ccc;
        }
        
        @media (max-width: 768px) {
            .welcome-title {
                font-size: 2rem;
            }
            
            .service-box {
                flex-direction: column;
                text-align: center;
            }
            
            .service-image-left,
            .service-image-right {
                flex: none;
                width: 100%;
                max-width: 300px;
            }
        }