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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
            overflow-x: hidden;
        }

        .wrapper {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
            margin-top: 36px;
            margin-bottom: 36px;
            padding: 20px 0;
        }

        .header-content {
            text-align: center;
        }

        .site-title {
            font-size: 32px;
            line-height: 1.2;
            margin-bottom: 10px;
            font-weight: normal;
        }

        .site-subtitle {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #666;
        }

        nav {
            background-color: #f0f0eb;
            margin-bottom: 40px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 12px 20px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #000;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        nav ul li a:hover {
            background-color: #000;
            color: #fff;
        }

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

        h1 {
            font-size: 32px;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        article {
            margin-bottom: 60px;
        }

        article p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 1.2em;
        }

        article h2 {
            font-size: 24px;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.8em;
        }

        article h3 {
            font-size: 20px;
            line-height: 1.4;
            margin-top: 1.3em;
            margin-bottom: 0.7em;
        }

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

        article a:hover {
            text-decoration: none;
        }

        .transition-section {
            margin-bottom: 50px;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 1.2em;
        }

        {% if links %}
        .links-section {
            background-color: #f0f0eb;
            padding: 40px 20px;
            margin-bottom: 60px;
        }

        .links-section h2 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 30px;
        }

        .links-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .links-section h3:first-of-type {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-bottom: 25px;
        }

        .links-section li {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
        }

        .links-section a {
            color: #666;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid transparent;
            transition: color 0.3s, border-color 0.3s;
        }

        .links-section a:hover {
            color: #000;
            border-bottom-color: #000;
        }
        {% endif %}

        footer {
            border-top: 6px solid #f0f0eb;
            padding: 40px 20px;
            text-align: center;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #999;
            margin-top: 80px;
        }

        .divider {
            width: 214px;
            height: 6px;
            background-color: #000;
            margin: 50px auto;
        }

        @media (max-width: 768px) {
            .wrapper {
                padding: 0 15px;
            }

            header {
                margin-top: 20px;
                margin-bottom: 20px;
            }

            .site-title {
                font-size: 24px;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            h1 {
                font-size: 24px;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            .container {
                padding: 0 15px;
            }

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

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            {% endif %}

            .divider {
                width: 150px;
                margin: 40px auto;
            }
        }

        @media (max-width: 480px) {
            .site-title {
                font-size: 20px;
            }

            h1 {
                font-size: 20px;
            }

            article p,
            .transition-section p {
                font-size: 14px;
            }

            nav ul li a {
                padding: 10px 15px;
            }
        }
    