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

        body {
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            color: #000;
            background: #fff;
        }

        a {
            color: #003399;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
            color: #cc0000;
        }

        .top-nav {
            background: #003355;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-nav a {
            color: #fff;
            font-size: 11px;
            margin-right: 15px;
            padding: 5px 0;
        }

        .top-nav a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .header-banner {
            background: linear-gradient(to bottom, #10418C, #0a2d5f);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            flex: 1;
            min-width: 250px;
        }

        .header-content h1 {
            color: #fff;
            font-size: 22px;
            font-weight: bold;
            margin: 0 0 5px 0;
        }

        .header-tagline {
            color: #fff;
            font-size: 11px;
            opacity: 0.9;
        }

        .tagline-bar {
            background: #6b8ec6;
            padding: 8px 20px;
            text-align: center;
            color: #fff;
            font-size: 11px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        article {
            background: #fff;
            padding: 0 0 30px 0;
        }

        article h2 {
            color: #10418C;
            font-size: 16px;
            font-weight: bold;
            margin: 25px 0 12px 0;
            padding: 0;
        }

        article h3 {
            color: #003399;
            font-size: 14px;
            font-weight: bold;
            margin: 20px 0 10px 0;
        }

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

        .transition-section {
            background: #f5f7fa;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #6b8ec6;
            border-radius: 3px;
        }

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

        .links-section {
            background: #fff;
            padding: 30px 0;
        }

        .links-section h3 {
            color: #10418C;
            font-size: 15px;
            font-weight: bold;
            margin: 25px 0 15px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #6b8ec6;
        }

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

        .links-section li {
            padding: 8px 0;
            position: relative;
            padding-left: 18px;
        }

        .links-section li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #6b8ec6;
            font-size: 12px;
        }

        .links-section a {
            color: #003399;
            font-size: 13px;
        }

        .links-section a:hover {
            color: #cc0000;
        }

        .bottom-nav {
            background: #B5B5B5;
            padding: 12px 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .bottom-nav a {
            color: #fff;
            font-size: 11px;
            font-weight: bold;
        }

        .footer {
            background: #848484;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-text {
            color: #fff;
            font-size: 11px;
        }

        .footer a {
            color: #fff;
            margin-left: 15px;
        }

        @media (max-width: 768px) {
            .header-banner {
                flex-direction: column;
                text-align: center;
            }

            .header-content h1 {
                font-size: 18px;
            }

            .top-nav {
                flex-direction: column;
                gap: 5px;
            }

            .nav-left, .nav-right {
                justify-content: center;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }

            .bottom-nav {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

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

            .container {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .header-content h1 {
                font-size: 16px;
            }

            .top-nav a {
                font-size: 10px;
                margin-right: 10px;
            }

            article h2 {
                font-size: 14px;
            }

            .links-section h3 {
                font-size: 13px;
            }
        }
    