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

        body {
            font-family: Arial, "Arial Unicode MS", Helvetica, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            color: #636363;
            background: #E8E8E8;
            min-width: 320px;
        }

        .container {
            max-width: 1020px;
            margin: 0 auto;
            background: #FFF;
            border-left: 1px solid #999;
            border-right: 1px solid #999;
        }

        header {
            background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7) center top no-repeat;
            background-color: #989232;
            height: 70px;
            position: relative;
        }

        nav {
            background: transparent;
            padding: 20px 15px;
            position: relative;
        }

        .main-nav {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav > li > a {
            display: block;
            padding: 12px 16px;
            color: #FFF;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .main-nav > li > a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #573512;
        }

        main {
            padding: 20px;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            color: #999233;
            font-size: 30px;
            font-weight: normal;
            margin: 20px 0 25px;
            line-height: 1.2;
        }

        h2 {
            color: #C72231;
            font-size: 22px;
            font-weight: normal;
            margin: 25px 0 15px;
            line-height: 1.2;
        }

        h3 {
            color: #989232;
            font-size: 18px;
            font-weight: bold;
            margin: 20px 0 12px;
            line-height: 1.3;
        }

        article {
            margin-bottom: 30px;
        }

        article p {
            margin: 13px 0;
            line-height: 1.75;
        }

        article a {
            color: #989232;
            font-weight: bold;
            text-decoration: none;
        }

        article a:hover {
            color: #C72231;
        }

        article ul {
            margin: 15px 0 15px 25px;
        }

        article li {
            margin: 8px 0;
            padding-left: 10px;
            list-style: none;
            position: relative;
        }

        article li:before {
            content: "■";
            color: #989232;
            position: absolute;
            left: -15px;
            font-size: 8px;
            top: 5px;
        }

        .transition-section {
            background: #f9f9f9;
            padding: 25px;
            margin: 30px 0;
            border-radius: 4px;
            border-top: 3px solid #989232;
        }

        .transition-section p {
            margin: 10px 0;
            line-height: 1.75;
        }

        {% if links %}
        .links-section {
            background: #f5f5f5;
            padding: 30px 20px;
            margin: 30px 0;
            border-radius: 4px;
            border: 1px solid #ddd;
        }

        .links-section h3 {
            color: #C72231;
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #989232;
        }

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

        .links-section li {
            margin: 0 0 10px 0;
            padding: 0;
            break-inside: avoid;
        }

        .links-section li:before {
            display: none;
        }

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

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

        footer {
            background: #989232;
            color: #FFF;
            padding: 30px 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            line-height: 1.75;
        }

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

        footer a:hover {
            color: #573512;
        }

        @media (max-width: 768px) {
            .container {
                border-left: none;
                border-right: none;
            }

            header {
                height: auto;
                padding: 15px;
            }

            nav {
                padding: 15px 10px;
            }

            .main-nav {
                flex-direction: column;
                align-items: stretch;
            }

            .main-nav > li > a {
                text-align: center;
                padding: 10px;
            }

            main {
                padding: 15px;
            }

            h1 {
                font-size: 24px;
                margin: 15px 0 20px;
            }

            h2 {
                font-size: 20px;
                margin: 20px 0 12px;
            }

            h3 {
                font-size: 16px;
                margin: 15px 0 10px;
            }

            .transition-section {
                padding: 20px 15px;
            }

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

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

            footer {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 18px;
            }

            h3 {
                font-size: 16px;
            }
        }
    