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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.8;
            color: #333;
            background: #f8f6f3;
        }

        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 2rem 1rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 2.5rem;
            color: #fff;
            font-weight: 300;
            letter-spacing: 2px;
            margin: 0;
            padding: 1rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        article {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 2rem;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        article > * {
            padding: 1.5rem 2rem;
        }

        article h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #34495e;
            padding-bottom: 0.5rem;
            font-weight: 400;
        }

        article h3 {
            color: #34495e;
            font-size: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 400;
        }

        article h4 {
            color: #34495e;
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
            font-weight: 400;
        }

        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
            color: #555;
        }

        .transition-section {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .transition-section p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .links-section {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 3rem 2rem;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .links-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 400;
        }

        .links-section h3 {
            color: #34495e;
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ecf0f1;
            font-weight: 400;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 3rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .links-section a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #34495e;
            border-bottom: 1px solid #34495e;
            transform: translateX(5px);
        }

        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #ecf0f1;
            padding: 2rem 1rem;
            margin-top: 4rem;
            text-align: center;
        }

        footer a {
            color: #ecf0f1;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
        }

        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        footer h4,
        footer h5 {
            margin: 1rem 0;
            font-weight: 300;
            color: #bdc3c7;
        }

        footer h5 {
            font-size: 0.9rem;
        }

        footer h4 {
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            article,
            .transition-section,
            .links-section {
                margin: 2rem 1rem;
                padding: 1.5rem 1rem;
            }

            article > * {
                padding: 1rem;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article h4 {
                font-size: 1.1rem;
            }

            article p,
            .transition-section p {
                font-size: 1rem;
                text-align: left;
            }

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

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

            footer a {
                display: block;
                margin: 0.5rem 0;
            }

            footer br.mobil {
                display: block;
            }
        }

        @media (min-width: 769px) {
            footer br.mobil {
                display: none;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            article h2 {
                font-size: 1.4rem;
            }

            .links-section h2 {
                font-size: 1.5rem;
            }
        }
    