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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background: #d0d0d0;
        }

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

        header {
            background: #2d2d2d;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 3px solid #000;
        }

        h1 {
            font-family: Georgia, serif;
            font-size: 2.5em;
            color: #fff;
            font-weight: normal;
            letter-spacing: -1px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        article {
            padding: 40px 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        article h2 {
            font-family: Georgia, serif;
            font-size: 1.8em;
            color: #555;
            margin: 30px 0 15px 0;
            font-weight: normal;
            letter-spacing: -0.5px;
        }

        article h3 {
            font-size: 1.4em;
            color: #444;
            margin: 25px 0 12px 0;
            font-weight: bold;
        }

        article h4 {
            font-size: 1.2em;
            color: #555;
            margin: 20px 0 10px 0;
            font-weight: bold;
        }

        article p {
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.8;
            text-align: justify;
        }

        article p:first-letter {
            font-size: 2.5em;
            font-family: Georgia, serif;
            float: left;
            line-height: 0.9;
            margin: 5px 8px 0 0;
            color: #555;
        }

        article strong {
            font-weight: bold;
            color: #000;
        }

        article em {
            font-style: italic;
        }

        article a {
            color: #337295;
            text-decoration: none;
            border-bottom: 1px dotted #337295;
        }

        article a:hover {
            color: #000;
            border-bottom: 1px solid #000;
        }

        .transition-section {
            padding: 30px;
            max-width: 900px;
            margin: 0 auto;
            background: #f9f9f9;
            border-top: 2px solid #eee;
            border-bottom: 2px solid #eee;
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 13px;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            padding: 40px 30px;
            background: #f5f5f5;
            border-top: 3px solid #ddd;
        }

        .links-section h3 {
            font-family: Georgia, serif;
            font-size: 1.6em;
            color: #555;
            margin: 25px 0 15px 0;
            font-weight: normal;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }

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

        .links-section li {
            break-inside: avoid;
            page-break-inside: avoid;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #337295;
            font-weight: bold;
        }

        .links-section a {
            color: #337295;
            text-decoration: none;
            font-size: 13px;
            line-height: 1.6;
            display: inline-block;
        }

        .links-section a:hover {
            color: #000;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background: #2d2d2d;
            color: #777;
            padding: 20px 30px;
            text-align: center;
            font-size: 12px;
            border-top: 3px solid #000;
        }

        footer a {
            color: #4c9ac5;
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

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

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article p {
                text-align: left;
            }

            .transition-section {
                padding: 20px;
            }

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

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

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

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.2em;
            }

            article p:first-letter {
                font-size: 2em;
            }
        }
    