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

        body {
            font-family: 'Times New Roman', Times, serif;
            font-size: 16px;
            line-height: 1.6;
            color: #404040;
            background-color: #fff;
            padding: 0;
            margin: 0;
        }

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

        header {
            background-color: #320000;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 40px;
        }

        h1 {
            font-size: 2.5em;
            color: #320000;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: normal;
            line-height: 1.2;
        }

        h2 {
            font-size: 1.8em;
            color: #320000;
            margin: 30px 0 20px;
            font-weight: normal;
        }

        h3 {
            font-size: 1.3em;
            color: #e10000;
            margin: 25px 0 15px;
            font-weight: normal;
        }

        h4 {
            font-size: 1.1em;
            color: #e10000;
            margin: 20px 0 10px;
            font-weight: normal;
        }

        article {
            max-width: 800px;
            margin: 0 auto 50px;
            padding: 0 20px;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        article a {
            color: #e10000;
            text-decoration: none;
            font-weight: bold;
            font-style: italic;
        }

        article a:hover {
            color: #ff0000;
            text-decoration: underline;
        }

        .transition-section {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

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

        {% if links %}
        .links-section {
            background-color: #f8f8f8;
            border-top: 3px solid #320000;
            border-bottom: 3px solid #320000;
            padding: 50px 0;
            margin-top: 60px;
        }

        .links-section h3 {
            color: #320000;
            font-size: 1.4em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10000;
        }

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

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

        .links-section li a {
            color: #e10000;
            text-decoration: none;
            font-weight: bold;
            font-style: italic;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .links-section li a:hover {
            color: #ff0000;
            text-decoration: underline;
        }

        .links-section li::before {
            content: "• ";
            color: #e10000;
            font-weight: bold;
            margin-right: 8px;
        }
        {% endif %}

        strong {
            font-weight: bold;
            color: #320000;
        }

        em {
            font-style: italic;
        }

        ul, ol {
            margin: 15px 0 15px 40px;
        }

        ul li, ol li {
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }

            h1 {
                font-size: 2em;
                margin: 30px 0 20px;
            }

            h2 {
                font-size: 1.5em;
                margin: 25px 0 15px;
            }

            h3 {
                font-size: 1.2em;
                margin: 20px 0 12px;
            }

            article, .transition-section {
                padding: 0 15px;
            }

            {% if links %}
            .links-section {
                padding: 30px 0;
            }

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

            .links-section h3 {
                font-size: 1.3em;
            }
            {% endif %}
        }

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

            h2 {
                font-size: 1.3em;
            }

            h3 {
                font-size: 1.1em;
            }

            article p {
                text-align: left;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            {% if links %}
            .links-section ul {
                column-gap: 30px;
            }
            {% endif %}
        }
    