        
        
        /* =========================================
           TEXT EINSTELLUNGEN (GLOBAL)
           ========================================= */



         .page-content a {
            color: #9fbc45;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .page-content a:hover {
            color: #8dc63f; 
            text-decoration: none;
        }
*, *::before, *::after {
            box-sizing: border-box;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Open Sans', sans-serif;
            font-size: 15px;
            line-height: 30px;
            font-weight: 400;
            color: #64676B;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 2.5 !important;
            overflow-x: hidden; /* Verhindert das seitliche Scrollen/Wackeln auf dem Handy */
            width: 100%;
            position: relative;
            overflow-wrap: break-word;
            word-wrap: break-word;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
            hyphens: auto;
        }




        h1, h2, h3, h4 {
            font-weight: bold !important;
            line-height: 1.2;
            color: #202020;
            margin: 0;
        }

        ul { list-style: none; padding: 0; margin: 0; }
        a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }

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

        /* =========================================
           NAVIGATION
           ========================================= */
        /* Auf Unterseiten ist die Navigation dauerhaft dunkel */
        #main-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: #1a1a1a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .nav-inner {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .desktop-menu { display: none; }
        .desktop-menu a {
            color: #d1d5db;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin: 0 1rem;
        }
        .desktop-menu a:hover { color: #fff; }

        .burger-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.875rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        #mobile-menu {
            background-color: #202020;
            width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            position: absolute;
            top: 100%;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        #mobile-menu.open { max-height: 500px; }
        #mobile-menu a {
            color: #d1d5db;
            padding: 0.5rem 0;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        @media (min-width: 768px) {
            .nav-inner { justify-content: center; }
            .burger-btn { display: none; }
            .desktop-menu { display: flex; }
        }

        /* =========================================
           LAYOUT & STRUKTUR
           ========================================= */
        /* Extra Padding oben wegen der fixierten Navigation */
        .page-content {
            padding: 8rem 1.5rem 4rem 1.5rem; 
        }

        @media (min-width: 768px) {
            .page-content { padding: 10rem 8rem 6rem 8rem; }
        }
        @media (min-width: 1024px) {
            .page-content { padding: 10rem 16rem 6rem 16rem; }
        }

        .content-wrapper {
            max-width: 56rem; /* max-w-4xl */
            margin: 0 auto;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media (min-width: 768px) {
            .grid-layout { grid-template-columns: 1fr 3fr; }
        }

        .sidebar-title {
            color: #202020;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid #8dc63f;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 2rem;
        }

        .section-heading {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #202020;
        }

        .text-block { margin-bottom: 2rem; }
        
        .text-bold-small {
            font-size: 0.875rem;
            font-weight: 700;
            color: #202020;
            margin-bottom: 1rem;
        }

        .separator {
            border-top: 1px solid #e5e7eb;
            margin: 3rem 0;
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background-color: #202020;
            color: #fff;
            padding: 2rem 0;
            position: relative;
            text-align: center;
        }
        .scroll-top-btn {
            position: absolute;
            top: -1.25rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4b5563;
            border-radius: 9999px;
            padding: 0.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top-btn:hover { background-color: #6b7280; }
        .footer-links a { font-size: 0.75rem; color: #6b7280; margin: 0 0.5rem; }
        .footer-links a:hover { color: #fff; }
        .footer-copy { font-size: 0.625rem; color: #4b5563; margin-top: 0.5rem; }