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

        body {
            font-family: Cambria, Georgia, "Times New Roman", serif;
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            background: #fdfdfd url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiZGBg+A/EDEwgAgQAAP//AwCCAQECdXNdAAAAAElFTkSuQmCC');
        }

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

        header {
            background: #333;
            border-bottom: 3px solid #ee7727;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: Cambria, Georgia, serif;
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #aaa;
            text-decoration: none;
            font-size: 15px;
            font-weight: normal;
            transition: color 0.3s;
            text-shadow: 1px 0 1px #000;
        }

        nav a:hover {
            color: #fff;
        }

        main {
            background: #fff;
            margin: 40px auto;
            padding: 40px;
            max-width: 1200px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 3px;
        }

        h1 {
            font-family: Cambria, Georgia, serif;
            font-size: 42px;
            font-weight: bold;
            color: #222;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ee7727;
            text-shadow: 1px 0 1px #fff;
        }

        article h2 {
            font-family: Cambria, Georgia, serif;
            font-size: 32px;
            font-weight: bold;
            color: #222;
            margin: 30px 0 20px;
            text-shadow: 1px 0 1px #fff;
        }

        article h3 {
            font-family: Cambria, Georgia, serif;
            font-size: 24px;
            font-weight: bold;
            color: #222;
            margin: 25px 0 15px;
            text-shadow: 1px 0 1px #fff;
        }

        article h4 {
            font-family: Cambria, Georgia, serif;
            font-size: 20px;
            font-weight: bold;
            color: #222;
            margin: 20px 0 12px;
            line-height: 1.4;
        }

        article p {
            margin-bottom: 20px;
            color: #555;
            font-size: 16px;
            line-height: 1.7;
        }

        article a {
            color: #ee7727;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        article a:hover {
            opacity: 0.8;
        }

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        article blockquote {
            font-size: 22px;
            font-style: italic;
            line-height: 1.5;
            margin: 30px 0;
            padding: 20px 20px 20px 30px;
            border-left: 4px solid #ee7727;
            background: #f9f9f9;
            color: #555;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background: #f8f8f8;
            border-left: 4px solid #ee7727;
            border-radius: 3px;
        }

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

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        {% if links %}
        .links-section {
            margin-top: 50px;
            padding: 40px;
            background: #f8f8f8;
            border-radius: 3px;
            border-top: 3px solid #ee7727;
        }

        .links-section h3 {
            font-family: Cambria, Georgia, serif;
            font-size: 24px;
            font-weight: bold;
            color: #222;
            margin-bottom: 20px;
            text-shadow: 1px 0 1px #fff;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin: 0;
        }

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

        .links-section a {
            color: #ee7727;
            text-decoration: none;
            font-size: 15px;
            transition: opacity 0.3s;
            display: inline-block;
        }

        .links-section a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background: #111;
            color: #aaa;
            padding: 30px 0;
            margin-top: 50px;
            text-align: center;
            font-size: 13px;
            text-shadow: 1px 0 1px #000;
            border-top: 2px solid #000;
        }

        footer p {
            margin: 5px 0;
        }

        @media only screen and (max-width: 768px) {
            header .container {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            main {
                margin: 20px 10px;
                padding: 25px 20px;
            }

            h1 {
                font-size: 32px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

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

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

        @media only screen and (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            article h2 {
                font-size: 24px;
            }

            article blockquote {
                font-size: 18px;
                padding: 15px 15px 15px 20px;
            }
        }
    