body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #05664b;
            height: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .kontakt-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: center;
            align-items: flex-start;
            }
            .kontakt-bereich {
                background: #067757;
                color: #fff;
                padding: 40px 24px 32px 24px;
                margin-top: 32px;
                margin-left: 3vw;
                min-width: 320px;
                max-width: 600px;
                border-radius: 18px;
                font-size: 1.15rem;
                text-align: left;
                box-shadow: 0 4px 24px rgba(0,0,0,0.07);
                flex: 1 0 auto;
            }
        .kontakt-bereich h2 {
            margin-top: 0;
            margin-bottom: 18px;
            font-size: 2rem;
            font-weight: bold;
        }
        .kontakt-bereich input,
        .kontakt-bereich textarea {
            border: none;
            border-radius: 4px;
            padding: 8px;
            margin-top: 4px;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .kontakt-bereich input:focus,
        .kontakt-bereich textarea:focus {
            outline: 2px solid #fff;
        }
        .kontakt-gallery {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-top: 64px;
        }
        .gallery-row {
            display: flex;
            gap: 48px;
        }
        .gallery-row-offset {
            margin-left: 80px;
        }
        .gallery-img {
            width: 260px;
            height: 190px;
            object-fit: cover;
            border-radius: 12px;
            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;
        }
        .gallery-img:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 32px rgba(6,119,87,0.18);
            z-index: 2;
        }
        .gallery-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;
        }
        .gallery-lightbox.active {
          display: flex;
        }
        .gallery-lightbox-img {
          max-width: 80vw;
          max-height: 80vh;
          border-radius: 14px;
          box-shadow: 0 8px 32px rgba(0,0,0,0.25);
        }
        .gallery-close {
          position: absolute;
          top: 32px;
          right: 48px;
          color: #fff;
          font-size: 2.5rem;
          cursor: pointer;
          z-index: 10;
          user-select: none;
        }
        .gallery-arrow {
          position: absolute;
          top: 50%;
          color: #fff;
          font-size: 3rem;
          cursor: pointer;
          user-select: none;
          z-index: 10;
          padding: 0 18px;
          background: rgba(6,119,87,0.18);
          border-radius: 50%;
          transform: translateY(-50%);
        }
        .gallery-arrow-left {
          left: 32px;
        }
        .gallery-arrow-right {
          right: 32px;
        }
        
        
        .green-content {
            background: #05664b;
            flex: 1 0 auto;
            width: 100%;
            min-height: 200px;
            padding-bottom: 40px;
        }
        
        .kontakt-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;
        }
        .kontakt-btn:hover {
            background: #067757;
            color: #fff;
            border: 2px solid #fff;
        }
        .copy-email-btn {
            margin-left: 8px;
            cursor: pointer;
            width: 22px;
            height: 22px;
            display: inline-block;
            padding: 2px;
            border-radius: 4px;
            transition: background-color 0.2s, transform 0.1s;
            user-select: none;
            vertical-align: middle;
        }
        .copy-email-btn:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .copy-email-btn:active {
            transform: scale(0.95);
        }
        .copy-feedback {
            color: #4CAF50;
            font-size: 0.9rem;
            margin-left: 8px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .copy-feedback.show {
            opacity: 1;
        }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .kontakt-gallery {
                display: none;
            }
            
            .kontakt-flex {
                justify-content: center;
            }
            
            .kontakt-bereich {
                margin-left: 0;
                max-width: 90vw;
            }
        }