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

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

        .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;
            padding: 8px;
        }

        .mobile-toggle:focus {
            outline: 2px solid #0a4299;
            outline-offset: 2px;
        }

        /* 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;
            padding: 8px;
        }

        .mobile-close:focus {
            outline: 2px solid white;
            outline-offset: 2px;
        }

        .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;
        }

/* Page Header */
.page-header {
    background: #021D4A;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 0;
            margin-bottom: 20px;
            border-bottom: 1px solid #dee2e6;
        }

        .breadcrumbs nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .breadcrumbs ol {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 8px;
        }

        .breadcrumbs li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumbs a {
            color: #021D4A;
            text-decoration: none;
            font-weight: 600;
        }

        .breadcrumbs a:hover,
        .breadcrumbs a:focus {
            color: #0a4299;
            text-decoration: underline;
            outline: 2px solid #0a4299;
            outline-offset: 2px;
        }

        .breadcrumbs .separator {
            color: #6c757d;
            user-select: none;
        }

        .breadcrumbs [aria-current="page"] {
            color: #6c757d;
            font-weight: 400;
        }

        /* Main Content Area */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }

        .content-column {
            min-width: 0;
        }

        .sidebar {
            min-width: 0;
        }

        /* Typography */
        .content-column h2 {
            color: #021D4A;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 30px 0 15px 0;
        }

        .content-column h2:first-child {
            margin-top: 0;
        }

        .content-column h3 {
            color: #021D4A;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 25px 0 12px 0;
        }

        .content-column p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .content-column ul,
        .content-column ol {
            margin: 15px 0 15px 30px;
            line-height: 1.7;
        }

        .content-column li {
            margin-bottom: 8px;
        }

        /* Buttons */
        .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;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 16px;
        }

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

        .btn-secondary {
            background: #5a6268;
        }

        .btn-secondary:hover,
        .btn-secondary:focus {
            background: #6c757d;
            outline-color: #6c757d;
        }

        /* Image with Text Staggered */
        .image-text-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
            margin: 30px 0;
        }

        .image-text-row.reverse {
            direction: rtl;
        }

        .image-text-row.reverse > * {
            direction: ltr;
        }

        .image-text-row img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Accordion */
        .accordion {
            margin: 20px 0;
        }

        .accordion-item {
            border: 1px solid #dee2e6;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .accordion-button {
            width: 100%;
            padding: 15px 20px;
            background: white;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #021D4A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: background 0.2s ease;
        }

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

        .accordion-icon {
            transition: transform 0.3s ease;
        }

        .accordion-button[aria-expanded="true"] .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.open {
            max-height: 1000px;
        }

        .accordion-body {
            padding: 20px;
            border-top: 1px solid #dee2e6;
        }

        /* Tables */
        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        table caption {
            caption-side: top;
            padding: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #021D4A;
            text-align: left;
        }

        th {
            background: #021D4A;
            color: white;
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 12px;
            border-bottom: 1px solid #dee2e6;
        }

        tr:hover,
        tr:focus-within {
            background: #f8f9fa;
        }

        /* Photo Grid - 2 across */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .photo-item {
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            width: 100%;
        }

        .photo-item:hover,
        .photo-item:focus {
            transform: scale(1.05);
            outline: 3px solid #0a4299;
            outline-offset: 2px;
        }

        .photo-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Photo Grid with Captions */
        .photo-caption-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        .photo-caption-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .photo-caption-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .photo-caption-text {
            padding: 15px;
        }

        .photo-caption-text h3 {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
        }

        .photo-caption-text p {
            margin: 0;
            font-size: 0.95rem;
            color: #495057;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:focus {
            outline: 3px solid #0a4299;
        }

        /* Sidebar */
        .sidebar-box {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .sidebar-box h3 {
            color: #021D4A;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #021D4A;
        }

        .sidebar-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-box li {
            margin-bottom: 10px;
        }

        .sidebar-box a {
            color: #021D4A;
            text-decoration: none;
            font-weight: 600;
        }

        .sidebar-box a:hover,
        .sidebar-box a:focus {
            color: #0a4299;
            text-decoration: underline;
        }

        .sidebar-cta {
            background: #f0f4ff;
            border-left: 4px solid #021D4A;
        }

        /* Alert Boxes */
        .alert {
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 4px;
            border-left: 4px solid;
        }

        .alert-info {
            background: #d1ecf1;
            border-color: #0c5460;
            color: #0c5460;
        }

        .alert-warning {
            background: #fff3cd;
            border-color: #856404;
            color: #856404;
        }

        .alert-success {
            background: #d4edda;
            border-color: #155724;
            color: #155724;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        @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,
        .footer-grid a:focus {
            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;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                order: 2;
            }
        }

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

            .mobile-toggle {
                display: block;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .content-column h2 {
                font-size: 1.5rem;
            }

            .image-text-row {
                grid-template-columns: 1fr;
            }

            .image-text-row.reverse {
                direction: ltr;
            }

            .photo-grid,
            .photo-caption-grid {
                grid-template-columns: 1fr;
            }

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

            .table-responsive {
                font-size: 14px;
            }

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

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

            .page-header h1 {
                font-size: 1.5rem;
            }

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