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

        body {
            font-family: 'Verdana', 'Arial', 'Helvetica', sans-serif;
            background-color: #f5f5f5;
            color: #000000;
            line-height: 1.6;
        }

        header {
            background-color: #333366;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-title {
            color: #ffffff;
            font-size: 2rem;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .site-description {
            color: #cccccc;
            font-size: 0.875rem;
            margin-top: 10px;
        }

        nav {
            background-color: #333366;
            border-top: 1px solid #4a4a7f;
            padding: 12px 0;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .quick-find-label {
            color: #cccccc;
            font-size: 0.875rem;
            font-weight: bold;
            margin-right: 10px;
        }

        .nav-content a {
            color: #6699cc;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .nav-content a:hover {
            color: #ffffff;
        }

        .nav-separator {
            color: #cccccc;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #ffffff;
            min-height: 60vh;
        }

        h1 {
            color: #10409f;
            font-size: 2.5rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #333366;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #10409f;
            font-size: 1.75rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #333366;
            font-size: 1.35rem;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #333366;
            font-size: 1.1rem;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            color: #000000;
            font-size: 1rem;
        }

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

        .transition-section p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: #eeeeee;
            padding: 40px 30px;
            margin-top: 40px;
            border-radius: 8px;
            border-top: 4px solid #333366;
        }

        .links-section h2 {
            color: #10409f;
            font-size: 1.75rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .links-section h3 {
            color: #333366;
            font-size: 1.25rem;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #333366;
        }

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

        .links-section li {
            padding: 8px 0;
        }

        .links-section a {
            color: #6699cc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #003366;
            text-decoration: underline;
        }

        .links-section a::before {
            content: "→ ";
            margin-right: 5px;
        }
        {% endif %}

        footer {
            background-color: #333366;
            color: #cccccc;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
        }

        footer p {
            font-size: 0.875rem;
            margin: 8px 0;
        }

        footer a {
            color: #6699cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #ffffff;
        }

        hr {
            border: none;
            border-top: 1px solid #cccccc;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 1.875rem;
            }

            .nav-content {
                justify-content: center;
                font-size: 0.75rem;
            }

            .quick-find-label {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }

            main {
                padding: 30px 15px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            .transition-section {
                padding: 20px;
            }

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

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

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

            h1 {
                font-size: 1.5rem;
            }

            .nav-content a {
                font-size: 0.7rem;
            }

            article p {
                font-size: 0.95rem;
            }
        }
    