 <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        header {
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                        url('https://www.idz.lu/airbrush/img/welkomm.jpg') no-repeat center center;
            background-size: cover;
            max-width: 1000px;
            margin: 20px auto;
            color: #ffffff;
            padding: 4rem 1rem;
            text-align: center;
            min-height: 100px;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.2),
                         4px 4px 10px rgba(0,0,0,0.5),
                         0px 0px 20px rgba(0,0,0,0.3);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        header h1 {
            margin-bottom: 0.5rem;
            font-size: 2.8rem;
            letter-spacing: 2px;
        }

        header p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin: 0;
        }

        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        section {
            padding: 1.5rem 0;
            border-bottom: 1px solid #eee;
        }

        section:last-of-type { border-bottom: none; }

        h2 {
            color: #4f431c;
            border-left: 5px solid #c0b283;
            padding-left: 1rem;
            margin-top: 0.5rem;
            margin-bottom: 1.2rem;
        }

        h3 {
            color: #2c3e50;
            margin-top: 1.5rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        p { margin-bottom: 1rem; }

        .quote {
            font-style: italic;
            background: #f3f1e9;
            border-left: 10px solid #c0b283;
            margin: 1.5rem 0;
            padding: 1.5rem;
            font-size: 1.15rem;
            color: #555;
        }

        .leistungen-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        .leistung-card {
            background: #f3f1e9;
            border-top: 4px solid #c0b283;
            border-radius: 6px;
            padding: 1.2rem;
            text-align: center;
        }

        .leistung-card .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .leistung-card h4 {
            color: #4f431c;
            margin: 0.3rem 0;
            font-size: 1rem;
        }

        .leistung-card p {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
        }

        .galerie-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .galerie-item {
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            background: #eee;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #999;
            text-align: center;
        }

        .galerie-item a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .galerie-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .galerie-item:hover img {
            transform: scale(1.05);
        }

        .ueber-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: start;
            margin-top: 1rem;
        }

        .ueber-foto {
            background: #eee;
            border-radius: 8px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #c0b283;
            text-align: center;
            overflow: hidden;
        }

        .ueber-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .cta-container {
            text-align: center;
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            background: #c0b283;
            color: #fff;
            padding: 1rem 2.2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.2s, background 0.3s;
        }

        .cta-button:hover {
            background: #c0b283;
            transform: scale(1.05);
        }

        .cta-button.secondary {
            background: #fff;
            color: #f7ebc1;
            border: 2px solid #c0b283;
        }

        .cta-button.secondary:hover {
            background: #fdf2f2;
            transform: scale(1.05);
        }

        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            color: #777;
        }

        strong { color: #2c3e50; }
        a { color: #e74c3c; text-decoration: none; }
        a:hover { text-decoration: underline; }

        @media (max-width: 600px) {
            .galerie-grid { grid-template-columns: repeat(2, 1fr); }
            .ueber-grid { grid-template-columns: 1fr; }
            header h1 { font-size: 2rem; }
        }