 body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 900px; margin: 0 auto; padding: 20px; }
        header { border-bottom: 2px solid #00205B; padding-bottom: 20px; margin-bottom: 30px; text-align: center; }
        h1, h2 { color: #00205B; }
        .highlight { background: #f4f4f4; padding: 15px; border-left: 5px solid #00205B; margin: 20px 0; }
        footer { margin-top: 50px; font-size: 0.9em; color: #666; text-align: center; }
        .cta-btn { background: #00205B; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; }
        /* =========================================
   5. HEADER & STICKY NAV
   ========================================= */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand, #007bff);
    color: white;
    padding: 10px 20px;
    z-index: 2000;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s ease;
}
.skip-to-content:focus { top: 0; }

header {
    background-color: #fff;
    color: #555;
    min-height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

header img {
    width: 150px;
    height: auto;
    padding: 10px 0;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--brand, #333);
    border-radius: 3px;
    transition: all .3s ease;
}

/* Hamburger to X Animation */
.mobile-menu-icon.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-icon.active span:nth-child(2) { opacity: 0; }
.mobile-menu-icon.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-menu {
    display: none; /* Mobile default */
    list-style: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.nav-menu.active { display: flex; }

.nav-menu li { margin: 10px 0; text-align: center; }

.nav-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
body.menu-open { overflow: hidden; }
  section { padding: 30px 0; } 

    section.text-content {
    padding: 15px 0; 
}