        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            line-height: 1.65;
            color: #3d3d3d;
            background: #ffffff;
            font-size: 18px;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 30px;
        }

        header {
            background: transparent;
            border-bottom: 1px solid transparent;
            padding: 25px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(0px);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #e0e0e0;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: color 0.3s ease;
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        header.scrolled h1 {
            color: #2d2d2d;
            text-shadow: none;
        }

        header h1 a {
            color: inherit;
            text-decoration: none;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        header.scrolled nav a {
            color: #6d6d6d;
            text-shadow: none;
        }

        nav a:hover {
            color: #ffffff;
        }

        header.scrolled nav a:hover {
            color: #8b6f47;
        }

        .lang-switcher {
            display: flex;
            gap: 5px;
            font-size: 14px;
            align-items: center;
        }

        .lang-switcher a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 4px 6px;
            font-size: 14px;
            transition: color 0.3s ease;
            font-weight: 500;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        header.scrolled .lang-switcher a {
            color: #8d8d8d;
            text-shadow: none;
        }

        .lang-switcher a.active {
            color: #ffffff;
            font-weight: 600;
        }

        header.scrolled .lang-switcher a.active {
            color: #2d2d2d;
        }

        .lang-switcher span {
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;
        }

        header.scrolled .lang-switcher span {
            color: #d0d0d0;
        }

        section {
            padding: 80px 0;
        }

        section:first-of-type {
            padding-top: 0;
        }

        .anlaesse-section {
            padding: 60px 0;
            position: relative;
            z-index: 5;
            background: #ffffff;
        }
        
        .anlaesse-section h2 {
            font-size: 28px;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .anlaesse-section details {
            margin: 25px 0;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 15px;
        }
        
        .anlaesse-section details:last-child {
            border-bottom: none;
        }
        
        .anlaesse-section details summary {
            font-size: 18px;
            color: #2d2d2d;
            font-weight: 600;
        }
        
        .anlaesse-section details summary:hover {
            color: #8b6f47;
        }
        
        .anlaesse-section details ul {
            list-style: none;
            padding-left: 0;
        }
        
        .anlaesse-section details li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #3d3d3d;
            line-height: 1.6;
        }
        
        .anlaesse-section details li:before {
            content: "–";
            position: absolute;
            left: 0;
            color: #8b6f47;
        }
        
        .anlaesse-section details p a {
            transition: color 0.2s ease;
        }
        
        .anlaesse-section details p a:hover {
            color: #6d5436;
        }

        #angebot,
        #services {
            padding-top: 100px;
            position: relative;
            z-index: 5;
            background: #3d3d3d;
            color: #d8d8d8;
            min-height: 100vh;
        }
        
        #angebot h2,
        #services h2,
        #angebot h3,
        #services h3,
        #angebot h4,
        #services h4,
        #angebot p,
        #services p,
        #angebot li,
        #services li {
            color: #f5f5f5;
        }
        
        #angebot p,
        #services p {
            color: #d8d8d8;
        }
        
        #angebot strong,
        #services strong {
            color: #f5f5f5;
        }

        section:nth-child(odd) {
            background: #ffffff;
        }

        section:nth-child(even) {
            background: #3d3d3d;
            color: #d8d8d8;
        }

        section:nth-child(even) h2,
        section:nth-child(even) h3,
        section:nth-child(even) h4,
        section:nth-child(even) .section-label {
            color: #f5f5f5;
        }

        section:nth-child(even) p,
        section:nth-child(even) li {
            color: #d8d8d8;
        }

        section:nth-child(even) p strong {
            color: #f5f5f5;
        }

        /* Kontakt-Note ("Ein Satz reicht.") – auf dunklen Sections heller */
        .contact-note {
            margin-bottom: 40px;
            font-size: 18px;
        }

        section:nth-child(even) .contact-note {
            color: rgba(255, 255, 255, 0.85);
        }

        section:nth-child(odd) .contact-note {
            color: #6d6d6d;
        }

        /* Modernisierte Hero-Sektion */
        .hero {
            padding: 0;
            margin: 0;
            background: transparent;
            position: relative;
            overflow: visible;
            min-height: 100vh;
            height: 100vh;
            display: flex;
            align-items: center;
            width: 100%;
            left: 0;
            right: 0;
            box-sizing: border-box;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 2;
            pointer-events: none;
            margin: 0;
            padding: 0;
        }

        .hero-image-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            overflow: hidden;
            margin: 0;
            padding: 0;
            will-change: transform;
        }
        
        .hero-image-wrapper.scrolling {
            position: absolute;
            top: auto;
            bottom: 0;
        }

        .hero-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            align-items: center;
            min-height: 100vh;
        }

        .hero-content {
            max-width: 650px;
            padding: 100px 0 0 0;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-image {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            object-position: center 40%;
            animation: fadeIn 1s ease-out 0.3s both;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            margin: 0;
            padding: 0;
            will-change: transform;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero h2 {
            font-size: clamp(36px, 6vw, 64px);
            line-height: 1.15;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero .subline {
            font-size: clamp(20px, 2.8vw, 28px);
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 20px;
            font-weight: 400;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .hero ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0 30px 0;
        }

        .hero ul li {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 1px 5px rgba(0, 0, 0, 0.3);
            margin-bottom: 12px;
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 1.6;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.7;
            color: #5d5d5d;
            margin-bottom: 25px;
        }

        .hero em {
            font-style: italic;
        }

        .hero .cta-text {
            display: inline-block;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            padding-bottom: 2px;
        }

        .hero .cta-text:hover {
            color: #ffffff;
            border-bottom-color: #ffffff;
        }

        .hero .cta {
            display: inline-block;
            margin-top: 20px;
            padding: 20px 40px;
            background: #8b6f47;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.01em;
        }

        .hero .cta:hover {
            background: #6d5436;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .hero .cta:active {
            transform: translateY(-1px);
        }

        /* Hero Extended Section */
        .hero-extended {
            padding: 80px 0;
            background: #ffffff;
        }

        .hero-extended h3 {
            font-size: 32px;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .hero-extended h4 {
            font-size: 24px;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .hero-extended p {
            font-size: 18px;
            line-height: 1.8;
            color: #3d3d3d;
            margin-bottom: 20px;
        }

        .hero-extended .cta {
            margin-top: 40px;
        }

        /* Link zu Mediation-Subdomain */
        a[href*="mediation.dr-wellhoefer.de"] {
            color: #8b6f47;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        a[href*="mediation.dr-wellhoefer.de"]:hover,
        a[href*="mediation.dr-wellhoefer.de"]:active {
            color: #6d5436;
        }

        a[href*="mediation.dr-wellhoefer.de"]:visited {
            color: #8b6f47;
        }

        a[href*="mediation.dr-wellhoefer.de"]:visited:hover {
            color: #6d5436;
        }

        /* Link zu Sparring-Subdomain */
        a[href*="sparring.dr-wellhoefer.de"] {
            color: #8b6f47;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        a[href*="sparring.dr-wellhoefer.de"]:hover,
        a[href*="sparring.dr-wellhoefer.de"]:active {
            color: #6d5436;
        }

        a[href*="sparring.dr-wellhoefer.de"]:visited {
            color: #8b6f47;
        }

        a[href*="sparring.dr-wellhoefer.de"]:visited:hover {
            color: #6d5436;
        }

        /* CTA Button auch außerhalb Hero */
        .cta {
            display: inline-block;
            padding: 14px 28px;
            background: #8b6f47;
            color: #ffffff !important;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.2s;
        }

        .cta:hover {
            background: #6d5436;
            color: #ffffff !important;
        }

        img {
            width: 100vw;
            height: auto;
            display: block;
            margin: 50px 0;
            margin-left: calc(-1 * ((100vw - 1000px) / 2 + 30px));
            border-radius: 0;
            object-fit: cover;
        }

        /* Optimierte Bildausschnitte für maximale Wirkung */
        img[src="002_imgespraech.webp"] {
            object-position: 60% center;
            min-height: 60vh;
            object-fit: cover;
        }

        img[src="005_mediation.webp"] {
            object-position: center 45%;
            min-height: 60vh;
            object-fit: cover;
        }

        img[src="003_splash.webp"] {
            object-position: center 35%;
            min-height: 70vh;
            object-fit: cover;
        }

        img[src="006_imgespraech.webp"] {
            object-position: 55% center;
            min-height: 60vh;
            object-fit: cover;
        }

        h2 {
            font-size: 32px;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 30px;
            margin-top: 60px;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 50px;
            margin-bottom: 20px;
        }

        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 20px;
            color: #5d5d5d;
        }

        p strong {
            color: #3d3d3d;
        }

        ul {
            margin: 20px 0;
            padding-left: 25px;
        }

        ul li {
            margin-bottom: 10px;
            color: #5d5d5d;
        }

        blockquote {
            margin: 60px 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid #8b6f47;
            border-radius: 4px;
        }

        blockquote p {
            font-size: 19px;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 20px;
        }

        .attribution {
            font-size: 15px;
            color: #9d9d9d;
            font-style: normal;
        }

        .section-label {
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: #9d9d9d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .case-study {
            margin: 60px 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 4px;
        }

        .case-meta {
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: #9d9d9d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .case-study h4 {
            font-size: 20px;
            line-height: 1.4;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 15px;
        }

        .case-format {
            font-size: 15px;
            color: #8b6f47;
            margin-top: 15px;
            font-weight: 500;
        }

        section:nth-child(even) .case-study h4 {
            color: #f5f5f5;
        }

        section:nth-child(even) .case-format {
            color: #c9b89a;
        }

        footer {
            border-top: 1px solid #e0e0e0;
            padding: 40px 0;
            background: #ffffff;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #8d8d8d;
        }

        footer a {
            color: #8d8d8d;
            text-decoration: none;
            margin-left: 20px;
        }

        footer a:hover {
            color: #3d3d3d;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: start;
            max-width: 100%;
        }

        .about-content {
            padding: 0 60px 0 calc((100vw - 1000px) / 2 + 30px);
        }

        .about-image {
            width: 100%;
            height: 100%;
            margin: 0;
            border-radius: 0;
            object-fit: cover;
            object-position: center top;
            min-height: 600px;
        }

        .about-continuation {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 30px;
        }

        details {
            margin: 20px 0;
        }

        details summary {
            cursor: pointer;
            color: #8b6f47;
            font-weight: 500;
            padding: 10px 0;
            user-select: none;
            list-style: none;
        }

        details summary::-webkit-details-marker {
            display: none;
        }

        details summary:after {
            content: " ›";
        }

        details[open] summary:after {
            content: " ‹";
        }

        details summary:hover {
            color: #6d5436;
        }

        details[open] summary {
            margin-bottom: 15px;
        }

        section:nth-child(even) details summary {
            color: #c9b89a;
        }

            section:nth-child(even) details summary:hover {
                color: #d4c5ad;
            }

        @media (max-width: 768px) {
            .anlaesse-section {
                padding: 40px 0;
            }
            
            .anlaesse-section h2 {
                font-size: 24px;
            }
            
            .anlaesse-section details summary {
                font-size: 16px;
            }
            
            .anlaesse-section details li {
                font-size: 15px;
            }
            .container {
                padding: 0 20px;
            }

            nav ul {
                display: none;
            }

            .hero {
                min-height: 100vh;
            }

            .hero-wrapper {
                padding: 0 20px;
                min-height: 100vh;
            }

            .hero-content {
                max-width: 100%;
                padding: 100px 0 60px;
            }

            .hero-image-wrapper {
                width: 100vw;
                height: 100vh;
                min-height: 100vh;
            }

            .hero-image {
                width: 100vw;
                height: 100vh;
                min-height: 100vh;
                object-position: center 40%;
            }

            .hero::before {
                width: 100vw;
                height: 100vh;
            }

            .hero h2 {
                font-size: clamp(28px, 8vw, 48px);
            }

            .hero .subline {
                font-size: clamp(18px, 4vw, 24px);
            }

            .hero-extended {
                padding: 50px 0;
            }

            .hero-extended h3 {
                font-size: 26px;
            }

            .hero-extended h4 {
                font-size: 22px;
            }

            .hero-extended p {
                font-size: 16px;
            }

            img {
                margin-left: -20px;
                width: 100vw;
                min-height: 40vh;
            }

            img[src="002_imgespraech.webp"],
            img[src="005_mediation.webp"],
            img[src="006_imgespraech.webp"] {
                min-height: 40vh;
            }

            img[src="003_splash.webp"] {
                min-height: 50vh;
            }

            h2 {
                font-size: 26px;
            }

            h3 {
                font-size: 22px;
            }

            section {
                padding: 60px 0;
            }

            blockquote {
                font-size: 20px;
            }

            blockquote p {
                font-size: 20px;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
            }

            .about-content {
                padding: 0 20px;
            }

            .about-image {
                min-height: 400px;
            }
        }
