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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .top-stripe {
            height: 4px;
            background: linear-gradient(90deg, #8b4513 0%, #a0522d 50%, #8b4513 100%);
        }

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

        header {
            background-color: #fff;
            padding: 20px 40px;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-top {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .header-top a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .header-top a:hover {
            color: #8b4513;
        }

        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #8b4513;
            text-align: center;
            letter-spacing: 2px;
        }

        nav {
            background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
            border-top: 1px solid #d0d0d0;
            border-bottom: 1px solid #d0d0d0;
            padding: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 15px 20px;
            color: #444;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border-right: 1px solid #d8d8d8;
        }

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

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

        .hero {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: #fff;
            padding: 60px 40px;
            text-align: center;
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: normal;
            letter-spacing: 1px;
        }

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

        article h2 {
            color: #8b4513;
            font-size: 2em;
            margin: 40px 0 20px 0;
            font-weight: normal;
        }

        article h3 {
            color: #a0522d;
            font-size: 1.5em;
            margin: 30px 0 15px 0;
            font-weight: normal;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #444;
            font-size: 1.05em;
        }

        .transition-section {
            background-color: #f9f9f9;
            padding: 40px;
            margin: 40px 0;
            border-left: 4px solid #8b4513;
        }

        .transition-section p {
            color: #555;
            font-size: 1.05em;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
            padding: 50px 40px;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #8b4513;
            font-size: 1.4em;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d0d0d0;
            font-weight: normal;
        }

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

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

        .links-section a {
            color: #555;
            text-decoration: none;
            display: inline-block;
            padding: 5px 0;
            transition: all 0.3s;
            position: relative;
        }

        .links-section a:before {
            content: "›";
            margin-right: 8px;
            color: #8b4513;
            font-weight: bold;
        }

        .links-section a:hover {
            color: #8b4513;
            padding-left: 5px;
        }
        {% endif %}

        footer {
            background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
            color: #bbb;
            padding: 40px;
            text-align: center;
            margin-top: 50px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column {
            text-align: left;
        }

        .footer-column h4 {
            color: #8b4513;
            margin-bottom: 10px;
            font-size: 1.1em;
            font-weight: normal;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 5px;
        }

        .footer-column a {
            color: #999;
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #a0522d;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            font-size: 0.9em;
            color: #888;
        }

        .footer-stripe {
            height: 4px;
            background: linear-gradient(90deg, #8b4513 0%, #a0522d 50%, #8b4513 100%);
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .logo {
                font-size: 1.8em;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li a {
                border-right: none;
                border-bottom: 1px solid #d8d8d8;
            }

            h1 {
                font-size: 1.8em;
            }

            article {
                padding: 30px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

            .footer-nav {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

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

        @media (max-width: 480px) {
            .logo {
                font-size: 1.5em;
            }

            h1 {
                font-size: 1.5em;
            }

            .hero {
                padding: 40px 20px;
            }
        }
    