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

        body {
            font-family: 'Marck Script', Arial, serif;
            background-color: #f5f5dc;
            color: #333;
            line-height: 1.7;
        }

        #outerpage {
            max-width: 1400px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        #logo-top {
            background: #f5f5dc;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 3px solid #43136c;
        }

        #logo-top a {
            text-decoration: none;
        }

        .logo-black {
            font-size: 3rem;
            color: #43136c;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .schrift3 {
            font-size: 1.5rem;
            color: #666;
            font-style: italic;
        }

        .site-header {
            background: #f5f5dc;
            border-bottom: 2px solid #43136c;
        }

        nav {
            background: #f5f5dc;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 15px 20px;
            color: #43136c;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #fd6203;
            background: rgba(253, 98, 3, 0.05);
        }

        .wrapper {
            padding: 40px 20px;
            min-height: 500px;
        }

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

        h1 {
            font-size: 3rem;
            color: #43136c;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #fd6203;
        }

        article {
            background: #fff;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        article h2 {
            font-size: 2.2rem;
            color: #43136c;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.8rem;
            color: #fd6203;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.5rem;
            color: #555;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        article p {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }

        .transition-section {
            background: #f9f9f9;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 5px solid #43136c;
            border-radius: 5px;
        }

        .transition-section p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 15px;
        }

        .links-section {
            background: #f5f5dc;
            padding: 40px 30px;
            border-radius: 8px;
            border: 2px solid #43136c;
            margin-bottom: 40px;
        }

        .links-section h3 {
            font-size: 2rem;
            color: #43136c;
            margin-bottom: 20px;
            margin-top: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fd6203;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 20px;
        }

        .links-section ul li {
            break-inside: avoid;
            margin-bottom: 12px;
        }

        .links-section ul li a {
            color: #43136c;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
        }

        .links-section ul li a:hover {
            color: #fd6203;
            padding-left: 10px;
        }

        .links-section ul li a:before {
            content: "→ ";
            color: #fd6203;
            margin-right: 5px;
        }

        footer {
            background: #43136c;
            color: #fff;
            padding: 30px 20px;
            text-align: center;
            border-top: 5px solid #fd6203;
        }

        footer p {
            margin: 10px 0;
            font-size: 1.1rem;
        }

        footer a {
            color: #f5f5dc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #fd6203;
        }

        @media (max-width: 768px) {
            .logo-black {
                font-size: 2rem;
            }

            .schrift3 {
                font-size: 1.2rem;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #43136c;
            }

            nav ul li a {
                font-size: 1.5rem;
                padding: 12px 15px;
            }

            h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.8rem;
            }

            article h3 {
                font-size: 1.5rem;
            }

            article p {
                font-size: 1.1rem;
            }

            .links-section ul {
                column-count: 1;
            }

            .links-section h3 {
                font-size: 1.6rem;
            }

            .wrapper {
                padding: 20px 15px;
            }

            article {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-black {
                font-size: 1.6rem;
            }

            .schrift3 {
                font-size: 1rem;
            }

            nav ul li a {
                font-size: 1.3rem;
            }

            h1 {
                font-size: 1.6rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            .links-section {
                padding: 25px 20px;
            }
        }
    