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

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #021D4A;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
            font-weight: 600;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 245px;
        }

        /* Desktop Nav */
        .desktop-nav {
            display: block;
        }

        .desktop-nav > ul {
            display: flex;
            gap: 5px;
            list-style: none;
            align-items: center;
        }

        .desktop-nav > ul > li {
            list-style: none;
        }

        .desktop-nav a {
            display: block;
            padding: 10px 15px;
            color: #021D4A;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            white-space: nowrap;
            border-radius: 4px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .desktop-nav a:hover,
        .desktop-nav a:focus {
            color: #0a4299;
            background: #f0f4ff;
            outline: 2px solid #0a4299;
            outline-offset: 2px;
        }

        .has-dropdown {
            position: relative;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 260px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            border-radius: 4px;
            margin-top: 0;
            padding: 8px 0;
            list-style: none;
            z-index: 1000;
        }

        .dropdown li {
            list-style: none;
        }

        .has-dropdown:hover .dropdown,
        .dropdown:hover {
            display: block;
        }

        .dropdown a {
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 400;
            white-space: nowrap;
        }

        .dropdown a:hover {
            background: #f5f5f5;
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #021D4A;
            cursor: pointer;
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 200;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }

        .mobile-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: 320px;
            height: 100%;
            background: white;
            overflow-y: auto;
        }

        .mobile-header {
            background: #021D4A;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-title {
            font-size: 20px;
            font-weight: 700;
        }

        .mobile-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .mobile-menu {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .mobile-menu > li {
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile-link {
            display: block;
            padding: 16px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            background: white;
            transition: background 0.2s ease;
        }

        .mobile-link:hover,
        .mobile-link:focus {
            background: #f0f4ff;
        }

        .mobile-dropdown-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: white;
            border: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 16px;
            text-align: left;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s ease;
        }

        .mobile-dropdown-btn:hover,
        .mobile-dropdown-btn:focus {
            background: #f0f4ff;
            outline: 2px solid #0a4299;
            outline-offset: -2px;
        }

        .mobile-submenu {
            display: none;
            background: #f8f8f8;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .mobile-submenu.show {
            display: block;
        }

        .mobile-submenu a {
            display: block;
            padding: 12px 20px 12px 40px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 15px;
            background: #f8f8f8;
            transition: background 0.2s ease;
        }

        .mobile-submenu a:hover,
        .mobile-submenu a:focus {
            background: #e8ecf5;
            outline: 2px solid #0a4299;
            outline-offset: -2px;
        }

        /* Hero Image - 16:6 ratio (1920x720px recommended) */
        .hero-banner {
            width: 100%;
            position: relative;
            padding-bottom: 37.5%;
            overflow: hidden;
        }

        .hero-banner img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


/* Hero Text */
.hero-section {
    background: #021D4A;
    color: white;
    padding: 70px 20px;
    text-align: center;
}

        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.2rem;
            font-style: italic;
        }

        /* Sections */
        .section {
            padding: 60px 20px;
        }

        .section-alt {
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #021D4A;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-desc {
            text-align: center;
            font-size: 1.1rem;
            color: #5a6c7d;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* News */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .news-item {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .news-item h3 {
            font-size: 1.4rem;
            color: #021D4A;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .news-date {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-style: italic;
        }

        .news-item p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #021D4A;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn:hover,
        .btn:focus {
            background: #0a4299;
            outline: 2px solid #0a4299;
            outline-offset: 2px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-item {
            background: #021D4A;
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
        }

        .service-item:hover,
        .service-item:focus {
            background: #09285B;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(2,29,74,0.3);
            outline: 3px solid #0a4299;
            outline-offset: 2px;
        }

        .service-item i {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .service-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }

        /* Footer */
        footer {
            background: #021D4A;
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .footer-grid h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-grid p {
            line-height: 1.8;
        }

        .footer-grid a {
            color: white;
            text-decoration: underline;
            font-weight: 600;
        }

        .footer-grid a:hover {
            color: #cce5ff;
        }

        .social-icon {
            font-size: 2.5rem;
            margin-top: 15px;
            display: inline-block;
        }

        .accessibility-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 16px;
            background: white;
            color: #021D4A !important;
            text-decoration: none !important;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            border: 2px solid white;
        }

        .accessibility-btn:hover,
        .accessibility-btn:focus {
            background: #021D4A;
            color: white !important;
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            outline: 3px solid white;
            outline-offset: 2px;
        }

        .accessibility-btn i {
            margin-right: 8px;
            font-size: 1.3em;
            vertical-align: middle;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.95rem;
        }

        .footer-bottom a {
            color: white;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .section {
                padding: 40px 20px;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .mobile-panel {
                width: 100%;
                max-width: 360px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 180px;
            }

            .hero-section h1 {
                font-size: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .mobile-panel {
                width: 100%;
            }
        }