
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Open+Sans+Condensed:wght@300;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 11pt;
            line-height: 1.6;
            background-color: #f6f6f6;
            color: #333;
        }
        
        .site-container {
            max-width: 1050px;
            margin: 0 auto;
            background-color: #fff;
        }
        
        header {
            background-color: #fff;
            padding: 20px 25px;
            border-bottom: 3px solid #1c3f81;
        }
        
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .logo-text {
            font-family: 'Open Sans Condensed', sans-serif;
            font-size: 28pt;
            font-weight: 700;
            color: #1c3f81;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .tagline {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 14pt;
            color: #900406;
            text-transform: uppercase;
        }
        
        nav {
            background-color: #1c3f81;
            border-radius: 3px;
            margin-bottom: 20px;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        
        nav li {
            flex: 1;
            min-width: 120px;
        }
        
        nav a {
            display: block;
            padding: 12px 14px;
            color: #fff;
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 10pt;
            text-transform: uppercase;
            text-align: center;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: #900406;
        }
        
        .hero-banner {
            background: linear-gradient(135deg, #1c3f81 0%, #900406 100%);
            padding: 60px 25px;
            text-align: center;
            color: #fff;
            margin-bottom: 30px;
        }
        
        h1 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 36pt;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: #fff;
            line-height: 1.2;
        }
        
        .content-wrapper {
            padding: 30px 25px;
        }
        
        article {
            margin-bottom: 40px;
        }
        
        article h2 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 24pt;
            color: #1c3f81;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #900406;
        }
        
        article h3 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 18pt;
            color: #900406;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        
        article h4 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 14pt;
            color: #1c3f81;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        article p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        article a {
            color: #900406;
            text-decoration: none;
            border-bottom: 1px solid #900406;
            transition: color 0.3s;
        }
        
        article a:hover {
            color: #1c3f81;
            border-bottom-color: #1c3f81;
        }
        
        .transition-section {
            background-color: #f6f6f6;
            padding: 30px 25px;
            margin: 30px 0;
            border-left: 4px solid #900406;
        }
        
        .transition-section p {
            font-size: 12pt;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .links-section {
            background-color: #fff;
            padding: 40px 25px;
            margin-top: 30px;
        }
        
        .links-section h2 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 24pt;
            color: #1c3f81;
            text-transform: uppercase;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid #900406;
        }
        
        .links-section h3 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 16pt;
            color: #900406;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        
        .links-section ul {
            columns: 2;
            column-gap: 30px;
            list-style: none;
            margin-bottom: 25px;
        }
        
        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }
        
        .links-section li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #900406;
            font-weight: 700;
        }
        
        .links-section a {
            color: #1c3f81;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }
        
        .links-section a:hover {
            color: #900406;
            text-decoration: underline;
        }
        
        footer {
            background-color: #1c3f81;
            color: #fff;
            padding: 30px 25px;
            text-align: center;
            margin-top: 40px;
        }
        
        footer p {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 14pt;
            text-transform: uppercase;
        }
        
        footer strong {
            font-weight: 700;
        }
        
        @media screen and (max-width: 768px) {
            h1 {
                font-size: 28pt;
            }
            
            .hero-banner {
                padding: 40px 20px;
            }
            
            article h2 {
                font-size: 20pt;
            }
            
            article h3 {
                font-size: 16pt;
            }
            
            .content-wrapper {
                padding: 20px 15px;
            }
            
            .links-section {
                padding: 30px 15px;
            }
            
            .links-section ul {
                columns: 1;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            nav li:last-child {
                border-bottom: none;
            }
        }
        
        @media screen and (max-width: 480px) {
            h1 {
                font-size: 22pt;
            }
            
            .logo-text {
                font-size: 22pt;
            }
            
            .tagline {
                font-size: 12pt;
            }
            
            article h2 {
                font-size: 18pt;
            }
            
            article h3 {
                font-size: 14pt;
            }
            
            .links-section h2 {
                font-size: 18pt;
            }
            
            .links-section h3 {
                font-size: 14pt;
            }
        }
    