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

        :root {
            --emerald: #1a4d5c;
            --emerald-light: #2d5a6f;
            --emerald-dark: #0f3a47;
            --gold: #c9a961;
            --gold-light: #d4af7f;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --dark-gray: #2c2c2c;
            --text-gray: #555555;
            --success: #10b981;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-gray);
            line-height: 1.6;
            background: var(--white);
        }

        /* Sticky CTA Button */
        .sticky-cta {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 999;
            animation: slideInRight 0.6s ease-out;
        }

        .sticky-cta-btn {
            background: var(--gold);
            color: var(--emerald);
            padding: 16px 28px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(201, 169, 97, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95em;
        }

        .sticky-cta-btn:hover {
            background: var(--gold-light);
            transform: scale(1.08);
            box-shadow: 0 15px 50px rgba(201, 169, 97, 0.5);
        }

        .sticky-cta-badge {
            background: var(--emerald);
            color: var(--white);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85em;
            font-weight: 800;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 40px;
            left: 40px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            z-index: 998;
            animation: slideInLeft 0.6s ease-out;
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(26, 77, 92, 0.08);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {display:inline-flex;align-items:center;text-decoration:none}

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        nav a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--emerald);
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-whatsapp {
            font-size: 1.3em !important;
            padding: 8px 12px !important;
            transition: transform 0.3s ease !important;
        }

        .nav-whatsapp:hover {
            transform: scale(1.2) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 3em;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2em;
            opacity: 0.95;
        }

        /* Section */
        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5em;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--emerald);
            text-align: center;
        }

        /* Article */
        .article {
            background: var(--light-gray);
            margin-bottom: 60px;
            border-radius: 12px;
        }

        .article-header {
            padding: 40px;
            background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
            color: var(--white);
            border-radius: 12px 12px 0 0;
        }

        .article-header h1,
        .article-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2em;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .article-content {
            padding: 40px;
            background: var(--white);
            border-radius: 0 0 12px 12px;
        }

        .article-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            text-align: justify;
        }

        .article-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5em;
            color: var(--emerald);
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .article-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .article-content li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .article-cta {
            background: rgba(26, 77, 92, 0.05);
            border-left: 4px solid var(--gold);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
        }

        .article-cta p {
            margin-bottom: 15px;
            font-weight: 500;
        }

        .btn-contact {
            background: var(--emerald);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
            text-decoration: none;
            display: inline-block;
            font-size: 0.95em;
        }

        .btn-contact:hover {
            background: var(--emerald-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 77, 92, 0.3);
        }

        /* Footer */
        footer {
            background: var(--emerald);
            color: var(--white);
            padding: 50px 20px 30px;
            text-align: center;
            border-top: 2px solid var(--gold);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-section h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .footer-section p,
        .footer-section a {
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            justify-content: flex-start;
            margin-top: 15px;
        }

        .footer-social a {
            font-size: 1.3em;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .footer-social a:hover {
            transform: scale(1.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(201, 169, 97, 0.3);
            padding-top: 30px;
            font-size: 0.9em;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sticky-cta {
                bottom: 20px;
                right: 20px;
            }

            .floating-whatsapp {
                bottom: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.5em;
            }

            nav ul {
                gap: 15px;
            }

            .logo {
                font-size: 1.4em;
            }

            .hero h1 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1em;
            }

            .section-title {
                font-size: 2em;
            }

            .article-header {
                padding: 30px;
            }

            .article-header h1,
        .article-header h2 {
                font-size: 1.5em;
            }

            .article-content {
                padding: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .footer-section {
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            section {
                padding: 60px 20px;
            }
        }

        @media (max-width: 500px) {
            .sticky-cta {
                display: none;
            }

            nav ul {
                gap: 10px;
                flex-direction: column;
            }

            nav {
                padding: 10px 0;
            }

            .nav-container {
                flex-direction: column;
                height: auto;
                gap: 15px;
            }

            .hero h1 {
                font-size: 1.5em;
            }

            .hero p {
                font-size: 0.95em;
            }

            .article-header h1,
        .article-header h2 {
                font-size: 1.3em;
            }
        }
    
        .article-bild{width:100%;height:auto;aspect-ratio:10/3;object-fit:cover;border-radius:16px;display:block;margin-bottom:28px;background:var(--light-gray)}
        .beitrag-nav{max-width:820px;margin:0 auto;padding:0 20px 60px;display:flex;gap:16px;flex-wrap:wrap;justify-content:space-between}
        .beitrag-nav a{color:var(--emerald);font-weight:600;text-decoration:none;min-height:44px;display:inline-flex;align-items:center}
        .beitrag-nav a:hover{text-decoration:underline}
    

/* Zusaetzlich fuer die Uebersichtsseite */

    
        .uebersicht-raster{max-width:1000px;margin:0 auto;display:grid;
            grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));gap:28px;padding-bottom:40px}

        .uebersicht-karte{background:var(--white);border:1px solid #eef0f2;border-radius:16px;
            overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .3s,transform .3s}

        .uebersicht-karte:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(26,77,92,.10)}

        .karte-bild{display:block}

        .karte-bild img{width:100%;height:auto;aspect-ratio:10/3;object-fit:cover;display:block;background:var(--light-gray)}

        .karte-text{padding:24px;display:flex;flex-direction:column;gap:12px;flex:1}

        .karte-text h2{font-family:'Outfit',sans-serif;font-size:1.25em;line-height:1.3;margin:0}

        .karte-text h2 a{color:var(--emerald);text-decoration:none}

        .karte-text h2 a:hover{text-decoration:underline}

        .karte-text p{color:var(--text-gray);margin:0;flex:1}

        .karte-link{color:#8a6d26;font-weight:600;text-decoration:none;min-height:44px;
            display:inline-flex;align-items:center}

        .karte-link:hover{text-decoration:underline}
@media(prefers-reduced-motion:reduce){.uebersicht-karte{transition:none}
            .uebersicht-karte:hover{transform:none}}

/* Wortmarke als Vektor statt als Text mit Farbverlauf */
.logo img{height:44px;width:auto;display:block}
.footer-logo img{height:72px;width:auto;display:block}
@media(max-width:900px){.logo img{height:38px}}
@media(max-width:500px){.logo img{height:34px}}


/* ── SILBENTRENNUNG ─────────────────────────────────────────────
   Deutsche Komposita sprengen schmale Spalten: "Steuerfachangestellter"
   hat 22 Zeichen. Der Browser trennt anhand von lang="de" im html-Tag.
   Überschriften bleiben ungetrennt, solange Platz ist, und werden erst
   auf schmalen Schirmen mitgetrennt. */
body{hyphens:auto;-webkit-hyphens:auto;overflow-wrap:break-word}
h1,h2,h3,h4,h5,.logo,.stat-num,.step-num{hyphens:manual;-webkit-hyphens:manual}
@media(max-width:600px){
    h1,h2,h3,h4,h5{hyphens:auto;-webkit-hyphens:auto}
}

/* Fuer Screenreader und Suchmaschinen da, optisch verborgen */
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}


/* Urheberhinweis der Umsetzung */
.umsetzung{display:block;margin-top:10px;font-size:var(--fs-xs)}
.umsetzung a{color:var(--gold-on-dark);text-decoration:none;border-bottom:1px solid rgba(232,208,163,.35)}
.umsetzung a:hover{border-bottom-color:var(--gold-on-dark)}
