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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
        }

        header {
            background-color: #2c2c2c;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-title {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .site-title a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .site-title a:hover {
            color: #d4af37;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        nav a:hover {
            color: #d4af37;
        }

        .mobile-nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 2rem;
            line-height: 1.2;
            text-align: center;
            letter-spacing: -0.5px;
        }

        article {
            background-color: #f9f9f9;
            padding: 3rem;
            margin-bottom: 3rem;
            border-left: 4px solid #d4af37;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        article h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c2c2c;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c2c2c;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
        }

        article p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: #555;
        }

        .transition-section {
            background-color: #fff;
            padding: 2rem 3rem;
            margin-bottom: 3rem;
            border-top: 2px solid #e0e0e0;
            border-bottom: 2px solid #e0e0e0;
        }

        .transition-section p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 1rem;
        }

        {% if links %}
        .links-section {
            background-color: #2c2c2c;
            padding: 4rem 3rem;
            color: #fff;
            margin-bottom: 0;
        }

        .links-section h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #d4af37;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.5rem;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .links-section li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }

        .links-section a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
        }

        .links-section a:hover {
            color: #d4af37;
            padding-left: 0.5rem;
        }
        {% endif %}

        footer {
            background-color: #1a1a1a;
            color: #999;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
        }

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

        footer a:hover {
            text-decoration: underline;
        }

        hr {
            border: none;
            border-top: 1px solid #e0e0e0;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #2c2c2c;
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 1rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }

            nav.active {
                display: flex;
            }

            .mobile-nav-toggle {
                display: flex;
            }

            .header-inner {
                flex-wrap: wrap;
                position: relative;
            }

            h1 {
                font-size: 2rem;
            }

            article {
                padding: 2rem 1.5rem;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            .transition-section {
                padding: 1.5rem 1.5rem;
            }

            {% if links %}
            .links-section {
                padding: 3rem 1.5rem;
            }

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

            main {
                padding: 2rem 1rem;
            }
        }

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

            article h2 {
                font-size: 1.4rem;
            }

            .site-title {
                font-size: 1.4rem;
            }
        }
    