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

        :root {
            --emerald: #1a4d5c;
            --emerald-light: #2d5a6f;
            --gold: #c9a961;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-gray: #555555;
        }

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

        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(26, 77, 92, 0.08);
        }

        .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 a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5em;
            font-weight: 800;
            color: var(--emerald);
            margin-bottom: 40px;
            border-bottom: 2px solid var(--gold);
            padding-bottom: 20px;
        }

        h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5em;
            font-weight: 700;
            color: var(--emerald);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15em;
            font-weight: 700;
            color: var(--emerald-light);
            margin-top: 25px;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        strong {
            color: var(--emerald);
            font-weight: 600;
        }

        a {
            color: var(--emerald);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        ul, ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 8px;
        }

        footer {
            background: var(--emerald);
            color: var(--white);
            padding: 30px 20px;
            text-align: center;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            h2 {
                font-size: 1.2em;
            }

            .container {
                padding: 40px 20px;
            }
        }

/* 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}}


/* Rückweg zur Startseite: die Rechtsseiten werden oft direkt angesteuert */
.zurueck-leiste{max-width:900px;margin:0 auto;padding:0 20px 56px}
.zurueck-link{display:inline-flex;align-items:center;gap:9px;min-height:44px;
    padding:11px 22px;border:1px solid var(--emerald);border-radius:10px;
    color:var(--emerald);text-decoration:none;font-family:'Outfit',sans-serif;
    font-weight:700;font-size:.95em;transition:background .25s,color .25s}
.zurueck-link:hover{background:var(--emerald);color:#ffffff}
.zurueck-link:focus-visible{outline:3px solid var(--emerald);outline-offset:3px}
@media(prefers-reduced-motion:reduce){.zurueck-link{transition:none}}


/* ── 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}
}


/* 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)}
