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

        html {
            font-size: 100%;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=) center 100% repeat-x #f5f5f5;
            font-family: "Myriad Pro", "Segoe UI", Helvetica, Arial, sans-serif;
            color: #000;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .wrapper {
            max-width: 1024px;
            margin: 0 auto;
            background: #fff;
            padding: 20px;
        }

        header {
            background: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
            padding: 20px;
            margin-bottom: 30px;
            border-bottom: 4px solid #4d4d4d;
            position: relative;
        }

        header .tagline {
            font-size: 14px;
            font-weight: normal;
            letter-spacing: 1px;
            color: #666;
            text-align: right;
            margin-bottom: 10px;
        }

        header .site-title {
            font-size: 42px;
            font-weight: bold;
            color: #F7931E;
            text-align: center;
            margin: 20px 0;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        }

        nav {
            background: #f8f8f8;
            padding: 15px 20px;
            margin: -20px -20px 30px -20px;
            border-bottom: 2px solid #e0e0e0;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            display: block;
            color: #000;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            padding: 8px 15px;
            border-right: 2px solid #4d4d4d;
            transition: color 0.3s ease;
        }

        nav ul li:last-child a {
            border-right: none;
        }

        nav ul li a:hover {
            color: #F7931E;
        }

        main {
            background: #fff;
            padding: 35px 40px;
            letter-spacing: 0.5px;
            min-height: 400px;
        }

        h1 {
            color: #F7931E;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 25px;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
            line-height: 1.3;
        }

        article h2 {
            color: #F7931E;
            font-size: 20px;
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 15px;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        }

        article h3 {
            color: #4d4d4d;
            font-size: 18px;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        article a {
            color: #F7931E;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #4d4d4d;
        }

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

        article li {
            margin-bottom: 8px;
        }

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

        .transition-section p {
            margin-bottom: 12px;
            line-height: 1.7;
        }

        {% if links %}
        .links-section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .links-section h2 {
            color: #F7931E;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 25px;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .links-section h3 {
            color: #4d4d4d;
            font-size: 18px;
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #F7931E;
        }

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

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

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

        .links-section a {
            color: #F7931E;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

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

        footer {
            color: #4d4d4d;
            padding: 25px 20px;
            margin-top: 40px;
            border-top: 2px solid #e0e0e0;
            background: linear-gradient(to top, #f8f8f8 0%, #fff 100%);
        }

        footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        footer .copy {
            font-size: 14px;
        }

        footer .motto {
            font-size: 12px;
            text-align: right;
            max-width: 450px;
        }

        @media only screen and (max-width: 768px) {
            .wrapper {
                padding: 10px;
            }

            header {
                padding: 15px;
            }

            header .site-title {
                font-size: 32px;
            }

            nav {
                padding: 10px;
                margin: -15px -10px 20px -10px;
            }

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

            nav ul li {
                width: 100%;
            }

            nav ul li a {
                border-right: none;
                border-bottom: 1px solid #4d4d4d;
                padding: 12px 10px;
            }

            nav ul li:last-child a {
                border-bottom: none;
            }

            main {
                padding: 20px 15px;
            }

            h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            .transition-section {
                padding: 15px;
                margin: 25px 0;
            }

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

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

            footer .footer-content {
                flex-direction: column;
                text-align: center;
            }

            footer .motto {
                text-align: center;
            }
        }

        @media only screen and (max-width: 480px) {
            header .site-title {
                font-size: 26px;
            }

            header .tagline {
                font-size: 12px;
            }

            nav ul li a {
                font-size: 14px;
            }

            h1 {
                font-size: 22px;
            }
        }
    