body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .green-content {
            background: #05664b;
            width: 100%;
            padding-bottom: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            flex: 1;
        }
        
        .footer {
            margin-top: auto;
        }
        .impressum-block h2 {
            margin-top: 0;
            margin-bottom: 18px;
            font-size: 2rem;
            font-weight: bold;
        }
        .impressum-block a {
            color: #2184d6;
            text-decoration: underline;
            word-break: break-all;
        }
        .impressum-container {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 32px;
            margin-bottom: 32px;
            max-width: 1280px;      /* Begrenzte Gesamtbreite */
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            justify-content: space-between; /* Abstand links/rechts gleich */
        }
        .impressum-block {
            background: #067757;
            color: #fff;
            padding: 40px 24px 32px 24px;
            max-width: 600px;
            width: 100%;
            border-radius: 18px;
            font-size: 1.15rem;
            text-align: left;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            flex: 1 1 350px;
            min-width: 280px;
        }
        .impressum-block h2 {
            margin-top: 0;
            margin-bottom: 18px;
            font-size: 2rem;
            font-weight: bold;
        }
        .impressum-block a {
            color: #2184d6;
            text-decoration: underline;
            word-break: break-all;
        }
        @media (max-width: 1100px) {
            .impressum-container {
                flex-direction: column;
                gap: 24px;
                margin-left: 4vw;
                margin-right: 4vw;
            }
        }
        
        /* Mobile Optimierung für oberen Abstand */
        @media (max-width: 1024px) {
            .green-content {
                padding-top: 20px !important; /* Kleiner Abstand nach oben */
            }
        }