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

        body {
            font-family: "Franklin Gothic Book", Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #40463E;
            background: linear-gradient(to bottom, #6696FF 0%, #4A7FE8 900px);
            min-height: 100vh;
        }

        .container {
            max-width: 1024px;
            margin: 20px auto;
            background-color: #FAF4C4;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        header {
            background: linear-gradient(135deg, #8FB84A 0%, #6A9B2E 100%);
            padding: 40px 20px;
            text-align: center;
            color: #fff;
            border-bottom: 4px solid #D25D19;
        }

        nav {
            background: linear-gradient(to bottom, #D25D19 0%, #B75115 100%);
            padding: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

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

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 12px 20px;
            color: #D8DBD6;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #E2E5E1;
        }

        main {
            padding: 40px;
            background-color: #FAF4C4;
        }

        h1 {
            font-size: 36px;
            color: #52594F;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #D25D19;
            font-weight: bold;
        }

        article h2 {
            font-size: 28px;
            color: #52594F;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 24px;
            color: #52594F;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: bold;
        }

        article p {
            margin-bottom: 15px;
            text-align: left;
            color: #40463E;
        }

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

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

        .transition-section {
            background-color: #FFF9E6;
            padding: 30px;
            margin: 40px 0;
            border-radius: 8px;
            border-left: 5px solid #D25D19;
        }

        .transition-section p {
            color: #52594F;
            font-size: 16px;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(to bottom, #FFF 0%, #F5F5F5 100%);
            padding: 40px;
            margin-top: 40px;
            border-radius: 8px;
            border: 2px solid #D25D19;
        }

        .links-section h3 {
            font-size: 22px;
            color: #52594F;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #D25D19;
            font-weight: bold;
        }

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

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

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

        .links-section ul li a {
            color: #B75115;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        footer {
            background: linear-gradient(to top, #2F332E 0%, #3D423A 100%);
            color: #FFF;
            text-align: center;
            padding: 30px 20px;
            margin-top: 40px;
        }

        footer p {
            margin: 5px 0;
            font-size: 13px;
        }

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

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

        @media (max-width: 768px) {
            .container {
                margin: 10px;
            }

            main {
                padding: 20px;
            }

            h1 {
                font-size: 28px;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                width: 100%;
            }

            nav ul li a {
                text-align: left;
                padding: 10px 20px;
            }

            {% if links %}
            .links-section ul {
                columns: 1;
            }
            {% endif %}

            .links-section {
                padding: 20px;
            }
        }

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

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 20px;
            }

            header {
                padding: 20px 15px;
            }
        }
    