/* LOGO STYLES */
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px; /* Abstand zwischen Logo-Grafik und Text */
            text-decoration: none;
        }

        .logo-img {
            height: 250px; /* Höhe des Logos anpassen */
            width: auto;  /* Behält das Seitenverhältnis bei */
            object-fit: contain;
        }


        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .brand-subtitle {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
        }

/* ==========================================
   FOTO / ÜBER MICH BILD-ANPASSUNG
   ========================================== */

/* Der Rahmen / Behälter um das Foto */
.about-image {
    max-width: 320px;       /* Begrenzt die Breite (z.B. auf 320px statt vollbreit) */
    max-height: 400px;      /* Begrenzt die maximale Höhe */
    margin: 0 auto;         /* Zentriert den Rahmen in seiner Spalte */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Das eigentliche Foto */
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Füllt den Rahmen komplett aus */
    display: block;
}

<style>
        /* BASE & RESET */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #2d5a27;      /* Warmes Naturgrün */
            --primary-dark: #1e3d1a;
            --accent: #d4a373;       /* Sanftes Gold / Erdton */
            --accent-light: #faedcd;
            --text: #2b2b2b;
            --text-light: #555555;
            --bg-light: #fefae0;     /* Sanftes Creme/Off-White */
            --bg-white: #ffffff;
            --shadow: 0 4px 15px rgba(0,0,0,0.08);
            --radius: 8px;
        }

        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            color: var(--text);
            background-color: #faf8f5;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER & LOGO STYLES */
        header {
            background-color: var(--bg-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .brand-subtitle {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--text);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn-header {
            background-color: var(--primary);
            color: white !important;
            padding: 8px 18px;
            border-radius: var(--radius);
            font-weight: 600 !important;
        }

        .btn-header:hover {
            background-color: var(--primary-dark);
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #e9edc9 0%, #fefae0 100%);
            padding: 70px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero p.subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(45, 90, 39, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background-color: #1eb954;
            transform: translateY(-2px);
        }

        /* TRUST BAR */
        .trust-bar {
            background-color: var(--bg-white);
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .trust-bar span {
            margin: 0 15px;
            display: inline-block;
        }

        /* SECTIONS GENERAL */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ABOUT SECTION */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* === BILD-KORREKTUREN FÜR DAS FOTO === */
        
        /* Der Behälter um das Foto: Wir entfernen die fixe Höhe */
        .about-image {
            width: 100%;
            height: auto; /* Geändert: Höhe passt sich dem Foto an */
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background-color: #eef2e6; /* Fallback Farbe */
        }

        /* Das eigentliche Foto: Wir stellen sicher, dass es das Originalverhältnis behält */
        .about-photo {
            width: 100%;
            height: auto;       /* Geändert: Höhe passt sich der Breite an, verzerrt nicht */
            display: block;      /* Verhindert Ränder unten */
            object-fit: contain; /* Optional: Stellt sicher, dass das ganze Bild sichtbar ist, falls der Container ein festes Verhältnis hätte. Da wir oben height:auto haben, ist 'cover' oder 'contain' hier fast egal, aber 'auto' ist am sichersten für das Verhältnis. */
        }

        .about-text h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        /* SERVICES SECTION */
        .services {
            background-color: var(--bg-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .service-card {
            background-color: #fff;
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid #eef2e6;
            box-shadow: var(--shadow);
            transition: transform 0.2s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.25rem;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* CONTACT SECTION */
        .contact-section {
            background: linear-gradient(135deg, #fefae0 0%, #e9edc9 100%);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .contact-info h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .contact-info p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .info-item {
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .info-item strong {
            display: block;
            color: var(--primary);
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        /* FORM */
        .contact-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.95rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .disclaimer {
            font-size: 0.8rem;
            color: #888;
            margin-top: 15px;
            text-align: center;
        }

        /* FOOTER */
        footer {
            background-color: var(--primary-dark);
            color: #fff;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        footer a {
            color: var(--accent-light);
            margin: 0 10px;
        }

        /* STICKY MOBILE BAR */
        .sticky-mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-white);
            padding: 10px 15px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
            justify-content: space-between;
            gap: 10px;
        }

        .sticky-mobile-bar a {
            flex: 1;
            text-align: center;
            padding: 12px 0;
            font-size: 0.9rem;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .about-grid,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .sticky-mobile-bar {
                display: flex;
            }

            body {
                padding-bottom: 60px;
            }
        }
    </style>