
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            background-color: #71706D;
            min-height: 100%;
        }
        
        body {
            font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
            font-size: 13px;
            line-height: 1.6;
            color: #000;
            margin: 0;
            padding: 0;
            background: transparent;
        }
        
        .container {
            max-width: 830px;
            margin: 0 auto;
            background-color: #fff;
            min-height: 100vh;
            box-shadow: 0 0 5px 3px rgba(255, 255, 255, 0.3);
            position: relative;
        }
        
        header {
            background-color: #fff;
            padding: 20px;
            border-bottom: 1px solid #B7B7B7;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #006ab3;
        }
        
        .tagline {
            color: #006ab3;
            text-transform: uppercase;
            font-size: 20px;
            font-weight: bold;
        }
        
        .subtitle {
            font-size: 12px;
            color: #666;
        }
        
        .top-menu {
            display: flex;
            justify-content: space-between;
            background: linear-gradient(to bottom, #444, #111);
            border: 1px solid #000;
            margin: -10px -20px 0;
            flex-wrap: wrap;
        }
        
        .menu-item {
            flex: 1;
            min-width: 200px;
            padding: 10px 20px;
            text-align: center;
            border-right: 1px solid #333;
        }
        
        .menu-item:last-child {
            border-right: none;
        }
        
        .menu-item.blue {
            background: linear-gradient(to bottom, #006ab3, #004d85);
        }
        
        .menu-item.red {
            background: linear-gradient(to bottom, #e31c1d, #c41517);
        }
        
        .menu-item.gray {
            background: linear-gradient(to bottom, #666, #333);
        }
        
        .menu-item h2 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .menu-item p {
            color: #fff;
            font-size: 11px;
            opacity: 0.9;
        }
        
        .breadcrumb {
            background-color: #f6f6f6;
            padding: 10px 20px;
            border-bottom: 1px solid #ddd;
            font-size: 11px;
            color: #999;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        main {
            padding: 30px;
        }
        
        h1 {
            color: #1E6299;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1E6299;
        }
        
        article {
            margin-bottom: 40px;
        }
        
        article p {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        article h2 {
            color: #1E6299;
            font-size: 20px;
            margin: 25px 0 15px 0;
            font-weight: bold;
        }
        
        article h3 {
            color: #333;
            font-size: 16px;
            margin: 20px 0 10px 0;
            font-weight: bold;
        }
        
        .transition-section {
            background-color: #f9f9f9;
            padding: 25px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin: 30px 0;
        }
        
        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .links-section {
            background-color: #EDEDED;
            border: 1px solid #B7B7B7;
            padding: 25px;
            margin-top: 30px;
        }
        
        .links-section h3 {
            background: linear-gradient(to bottom, #1E6299, #0d4f7a);
            color: #fff;
            padding: 10px 15px;
            margin: 0 0 20px 0;
            font-size: 14px;
            font-weight: bold;
            border-radius: 3px;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 0;
            padding: 0;
        }
        
        .links-section li {
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .links-section li:hover {
            background-color: #f0f8ff;
            border-color: #1E6299;
        }
        
        .links-section a {
            display: block;
            padding: 12px 15px;
            color: #333;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease;
        }
        
        .links-section a:hover {
            color: #1E6299;
            text-decoration: none;
        }
        
        footer {
            background-color: #f6f6f6;
            border-top: 1px solid #ddd;
            padding: 25px;
            text-align: center;
            font-size: 11px;
            color: #666;
            margin-top: 50px;
        }
        
        footer .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        footer .footer-section {
            flex: 1;
            min-width: 200px;
        }
        
        footer .footer-section h4 {
            font-weight: bold;
            text-decoration: underline;
            margin-bottom: 10px;
            color: #333;
        }
        
        footer a {
            color: #666;
            text-decoration: none;
        }
        
        footer a:hover {
            color: #1E6299;
            text-decoration: underline;
        }
        
        footer hr {
            margin: 20px 0;
            border: none;
            height: 1px;
            background-color: #ddd;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 0;
                box-shadow: none;
            }
            
            .logo-section {
                flex-direction: column;
                text-align: center;
            }
            
            .top-menu {
                flex-direction: column;
            }
            
            .menu-item {
                border-right: none;
                border-bottom: 1px solid #333;
            }
            
            .menu-item:last-child {
                border-bottom: none;
            }
            
            main {
                padding: 20px 15px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
            }
            
            footer .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .tagline {
                font-size: 16px;
            }
            
            h1 {
                font-size: 20px;
            }
            
            .transition-section,
            .links-section {
                padding: 15px;
            }
        }
    