/* Стили из index.html */
:root {
            --amethyst-warmth: #9e556b;
            --copper-earth: #9e7355;
            --golden-wisdom: #a58c4d;
            --sage-harmony: #aeb28d;
            --jade-serenity: #cde0c9;
            --pure-light: #ffffff;
            --shadow-depth: #2a2a2a;
            --subtle-grey: #f8f9fa;
        }

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: var(--shadow-depth);
            background-color: var(--pure-light);
            overflow-x: hidden;
        }

        
        .typografie__headline-primaer {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--amethyst-warmth);
        }

        .typografie__headline-sekundaer {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.01em;
            line-height: 1.3;
            color: var(--copper-earth);
        }

        .typografie__headline-tertiaer {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 500;
            letter-spacing: 0;
            line-height: 1.4;
            color: var(--golden-wisdom);
        }

        .typografie__text-korpus {
            font-size: 1.125rem;
            font-weight: 400;
            line-height: 1.8;
            color: var(--shadow-depth);
        }

        .typografie__text-betonung {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.6;
            color: var(--sage-harmony);
        }

        
        .container-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .container-wrapper--schmale-breite {
            max-width: 800px;
        }

        .container-wrapper--mittlere-breite {
            max-width: 1000px;
        }

        
        .navigation-hauptbereich {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--jade-serenity);
            z-index: 1000;
            padding: 1rem 0;
        }

        .navigation-hauptbereich__inhalt {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .markenzeichen {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--amethyst-warmth);
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        .navigation-liste {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .navigation-liste__element a {
            text-decoration: none;
            color: var(--shadow-depth);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .navigation-liste__element a:hover {
            color: var(--copper-earth);
            border-bottom-color: var(--copper-earth);
        }

        
        .helden-sektion {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--jade-serenity) 0%, var(--sage-harmony) 100%);
            padding-top: 5rem;
        }

        .helden-sektion__inhalt {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .helden-sektion__text-bereich {
            max-width: 600px;
        }

        .helden-sektion__untertitel {
            font-size: 1.2rem;
            color: var(--copper-earth);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .helden-sektion__beschreibung {
            font-size: 1.25rem;
            margin: 2rem 0 3rem;
            color: var(--shadow-depth);
            line-height: 1.7;
        }

        .aktions-knopf {
            display: inline-block;
            background: var(--amethyst-warmth);
            color: var(--pure-light);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 0;
            border: 3px solid var(--amethyst-warmth);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .aktions-knopf:hover {
            background: transparent;
            color: var(--amethyst-warmth);
        }

        .helden-sektion__bild-bereich {
            position: relative;
        }

        .helden-sektion__hauptbild {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border: 8px solid var(--pure-light);
            box-shadow: 0 20px 40px rgba(158, 85, 107, 0.2);
        }

        
        .inhalts-sektion {
            padding: 5rem 0;
        }

        .inhalts-sektion--alternative {
            background: var(--subtle-grey);
        }

        .inhalts-sektion__kopfbereich {
            text-align: center;
            margin-bottom: 4rem;
        }

        .inhalts-sektion__titel {
            margin-bottom: 1.5rem;
        }

        .inhalts-sektion__beschreibung {
            max-width: 700px;
            margin: 0 auto;
        }

        
        .ueber-bereich__inhalt {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .ueber-bereich__bild {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border: 6px solid var(--sage-harmony);
        }

        
        .philosophie-karten {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .philosophie-karte {
            background: var(--pure-light);
            padding: 2.5rem;
            border: 2px solid var(--jade-serenity);
            text-align: center;
        }

        .philosophie-karte__symbol {
            width: 80px;
            height: 80px;
            background: var(--sage-harmony);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--pure-light);
        }

        .philosophie-karte__titel {
            color: var(--copper-earth);
            margin-bottom: 1rem;
        }

        
        .wege-gitter {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .weg-element {
            background: var(--pure-light);
            padding: 1rem;
            border-left: 5px solid var(--golden-wisdom);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .weg-element__nummer {
            display: inline-block;
            background: var(--amethyst-warmth);
            color: var(--pure-light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .weg-element__titel {
            color: var(--copper-earth);
            margin-bottom: 1rem;
        }

        
        .vorteile-liste {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .vorteil-element {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--pure-light);
            border-radius: 0;
        }

        .vorteil-element__ikone {
            width: 50px;
            height: 50px;
            background: var(--sage-harmony);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-light);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .vorteil-element__inhalt h3 {
            color: var(--copper-earth);
            margin-bottom: 0.5rem;
        }

        
        .testimonial-gitter {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-karte {
            background: var(--pure-light);
            padding: 2.5rem;
            border: 2px solid var(--jade-serenity);
            position: relative;
        }

        .testimonial-karte__zitat {
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--shadow-depth);
        }

        .testimonial-karte__autor {
            font-weight: 600;
            color: var(--copper-earth);
        }

        .testimonial-karte__position {
            font-size: 0.9rem;
            color: var(--sage-harmony);
        }

        
        .kontakt-formular {
            max-width: 600px;
            margin: 3rem auto 0;
            background: var(--pure-light);
            padding: 2.5rem;
            border: 2px solid var(--jade-serenity);
        }

        .formular-gruppe {
            margin-bottom: 1.5rem;
        }

        .formular-gruppe label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--copper-earth);
            font-weight: 500;
        }

        .formular-gruppe input,
        .formular-gruppe textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--sage-harmony);
            background: var(--pure-light);
            font-family: inherit;
            font-size: 1rem;
            color: var(--shadow-depth);
        }

        .formular-gruppe input:focus,
        .formular-gruppe textarea:focus {
            outline: none;
            border-color: var(--amethyst-warmth);
        }

        .formular-gruppe textarea {
            resize: vertical;
            min-height: 120px;
        }

        .benachrichtigung {
            position: fixed;
            top: 100px;
            right: 2rem;
            background: var(--sage-harmony);
            color: var(--pure-light);
            padding: 1rem 1.5rem;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateX(700px);
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .benachrichtigung--sichtbar {
            transform: translateX(0);
        }

        
        .haupt-fusszeile {
            background: var(--shadow-depth);
            color: var(--pure-light);
            padding: 3rem 0 1rem;
        }

        .fusszeile-inhalt {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .fusszeile-marke h3 {
            color: var(--jade-serenity);
            margin-bottom: 1rem;
        }

        .fusszeile-links h4 {
            color: var(--sage-harmony);
            margin-bottom: 1rem;
        }

        .fusszeile-links ul {
            list-style: none;
        }

        .fusszeile-links ul li {
            margin-bottom: 0.5rem;
        }

        .fusszeile-links ul li a {
            color: var(--pure-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .fusszeile-links ul li a:hover {
            color: var(--jade-serenity);
        }

        .fusszeile-copyright {
            border-top: 1px solid var(--sage-harmony);
            padding-top: 1rem;
            text-align: center;
            color: var(--sage-harmony);
            font-size: 0.9rem;
        }

        
        @media (max-width: 768px) {
            .container-wrapper {
                padding: 0 1rem;
            }

            .navigation-liste {
                display: none;
            }

            .helden-sektion__inhalt,
            .ueber-bereich__inhalt {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .philosophie-karten,
            .wege-gitter,
            .vorteile-liste,
            .testimonial-gitter {
                grid-template-columns: 1fr;
            }

            .fusszeile-inhalt {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
