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

        :root {
            --primary-blue: #031f4b;
            --secondary-blue: #072d66;
            --accent-cyan: #00bbe6;
            --grey-bg: #d9d9d9;
            --light-grey: #ededed;
            --dark-grey: #333333;
        }

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

        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary-blue);
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: 600;
            z-index: 10000;
        }

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

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

        /* =====================
           HEADER
        ===================== */
        .site-header {
            background: white;
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .site-logo {
            max-width: 320px;
            height: auto;
        }

        /* =====================
           NAVIGATION
        ===================== */
        .main-navigation {
            background: var(--primary-blue);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .nav-container::after {
            content: "";
            display: table;
            clear: both;
        }

        .mobile-toggle {
            display: none;
            background: white;
            color: var(--primary-blue);
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 5px;
            margin: 10px 0;
            float: right;
            position: relative;
            z-index: 1002;
        }

        .mobile-toggle:focus {
            outline: 3px solid #031f4b;
            outline-offset: 2px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 18px 20px;
            font-weight: 600;
            font-size: 15px;
            transition: background-color 0.2s;
        }

        .nav-link:hover,
        .nav-link:focus {
            background: var(--secondary-blue);
            outline: none;
        }

        .nav-link:focus-visible {
            outline: 3px solid #031f4b;
            outline-offset: -3px;
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--primary-blue);
            min-width: 260px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            list-style: none;
            padding: 0;
            margin: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .nav-item:hover .dropdown,
        .nav-item:focus-within .dropdown {
            display: block;
        }

        .dropdown-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 14px;
            transition: background-color 0.2s;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown-link:last-child {
            border-bottom: none;
        }

        .dropdown-link:hover,
        .dropdown-link:focus {
            background: var(--secondary-blue);
            outline: none;
        }

        .dropdown-link:focus-visible {
            outline: 3px solid #031f4b;
            outline-offset: -3px;
        }

        /* =====================
           MOBILE MENU
        ===================== */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100%;
            background: var(--primary-blue);
            z-index: 1001;
            overflow-y: auto;
            transition: right 0.3s ease;
            box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        }

        .mobile-menu-panel.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .mobile-menu-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }

        .mobile-close {
            background: transparent;
            border: 2px solid white;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s;
        }

        .mobile-close:hover,
        .mobile-close:focus {
            background: white;
            color: var(--primary-blue);
            outline: none;
        }

        .mobile-close:focus-visible {
            outline: 3px solid #031f4b;
            outline-offset: 2px;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 20px 0;
            margin: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            text-decoration: none;
            padding: 18px 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link:focus {
            background: var(--secondary-blue);
            padding-left: 35px;
            outline: none;
        }

        .mobile-nav-link:focus-visible {
            outline: 3px solid #031f4b;
            outline-offset: -3px;
        }

        .mobile-dropdown {
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
            background: rgba(0,0,0,0.2);
        }

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

        .mobile-dropdown-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 14px 25px 14px 45px;
            font-size: 15px;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-dropdown-link:hover,
        .mobile-dropdown-link:focus {
            background: var(--secondary-blue);
            padding-left: 55px;
            outline: none;
        }

        .mobile-dropdown-link:focus-visible {
            outline: 3px solid #031f4b;
            outline-offset: -3px;
        }

        .mobile-dropdown-icon {
            font-size: 18px;
            transition: transform 0.3s;
        }

        .mobile-nav-link.active .mobile-dropdown-icon {
            transform: rotate(180deg);
        }

        .mobile-nav-link-text {
            flex: 1;
        }

        /* =====================
           CAROUSEL
        ===================== */
        .carousel {
            position: relative;
            width: 100%;
            max-height: 600px;
            overflow: hidden;
            background: #000;
        }

        .carousel-slides {
            position: relative;
            width: 100%;
        }

        .carousel-slide {
            display: none;
            width: 100%;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: cover;
            display: block;
            background: #000;
            color: white;
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 14px;
            align-items: center;
            background: rgba(3, 31, 75, 0.88);
            padding: 14px 22px;
            border-radius: 12px;
        }

        /* Square/rounded-rect nav buttons instead of circles */
        .carousel-button {
            background: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-blue);
            transition: all 0.3s;
            font-weight: 700;
        }

        .carousel-button:hover {
            background: var(--accent-cyan);
            color: white;
        }

        .carousel-button:focus {
            outline: 3px solid white;
            outline-offset: 2px;
        }

        /* Diamond/rotated-square dots instead of circles */
        .carousel-dots {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .carousel-dot {
            width: 16px;
            height: 16px;
            transform: rotate(45deg);
            background: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .carousel-dot.active {
            background: white;
            transform: rotate(45deg) scale(1.25);
        }

        .carousel-dot:hover,
        .carousel-dot:focus {
            background: white;
        }

        .carousel-dot:focus {
            outline: 3px solid #031f4b;
            outline-offset: 3px;
        }

        /* =====================
           HERO
        ===================== */
        .hero-section {
            background: var(--dark-grey);
            color: white;
            text-align: center;
            padding: 30px 0;
        }

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

        .hero-section p {
            font-size: 1.3rem;
            font-style: italic;
            font-weight: 400;
        }

        main {
            padding: 0;
        }

        /* =====================
           CONTENT / CARDS
        ===================== */
        .content-section {
            padding: 60px 0;
        }

        .two-column {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .card-header {
            background: var(--primary-blue);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .card-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .card-body {
            padding: 30px;
        }

        .card-body h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .card-body h3 a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        .card-body h3 a:hover {
            color: var(--secondary-blue);
            text-decoration: underline;
        }

        .card-body h3 a:focus {
            outline: 2px solid #031f4b;
            outline-offset: 2px;
        }

        .card-body p {
            color: #666;
            margin-bottom: 20px;
        }

        .card-divider {
            border: none;
            border-top: 2px solid var(--light-grey);
            margin: 25px 0;
        }

        /* =====================
           BUTTONS
        ===================== */
        a.button,
        button.button,
        .button {
            display: inline-block;
            background: var(--primary-blue) !important;
            color: white !important;
            text-decoration: none !important;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary-blue) !important;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
        }

        a.button:hover,
        button.button:hover,
        .button:hover {
            background: var(--secondary-blue) !important;
            color: white !important;
            border-color: var(--secondary-blue) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(3,31,75,0.3);
        }

        a.button:focus,
        button.button:focus,
        .button:focus {
            outline: 3px solid #031f4b;
            outline-offset: 3px;
        }

        .button-full {
            display: block;
            width: 100%;
        }

        /* =====================
           ANNOUNCEMENT BANNER
        ===================== */
        .announcement-banner {
            background: var(--light-grey);
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            padding: 20px 30px;
            margin: 30px 0;
            text-align: center;
        }

        .announcement-banner h2 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .announcement-banner p {
            color: #333;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .announcement-banner a {
            color: var(--primary-blue);
            font-weight: 600;
        }

        .announcement-banner a:focus {
            outline: 2px solid #031f4b;
            outline-offset: 2px;
        }

        /* =====================
           SERVICES SECTION
        ===================== */
        .services-section {
            background: var(--grey-bg);
            padding: 80px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--primary-blue);
            color: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            min-height: 200px;
        }

        .service-card:hover {
            background: var(--secondary-blue);
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }

        .service-card:focus {
            outline: 4px solid #031f4b;
            outline-offset: 4px;
        }

        .service-card i {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .service-card h2 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* =====================
           MISSION SECTION
        ===================== */
        .mission-section {
            padding: 60px 0;
        }

        .mission-section h2 {
            color: var(--primary-blue);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .mission-section p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .mission-section a {
            color: var(--primary-blue);
            font-weight: 600;
        }

        .mission-section a:hover {
            color: var(--secondary-blue);
        }

        .mission-section a:focus {
            outline: 2px solid #031f4b;
            outline-offset: 2px;
        }

        /* =====================
           FOOTER
        ===================== */
        .site-footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

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

        .footer-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 15px;
        }

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

        .footer-section a:hover {
            color: var(--accent-cyan);
        }

        .footer-section a:focus {
            outline: 2px solid #031f4b;
            outline-offset: 2px;
        }

        .social-icon {
            color: white;
            font-size: 3.5rem;
            display: inline-block;
            transition: all 0.3s;
            margin-right: 10px;
        }

        .social-icon:hover {
            color: var(--accent-cyan);
            transform: scale(1.1);
        }

        .social-icon:focus {
            outline: 3px solid #031f4b;
            outline-offset: 4px;
        }

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

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

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* =====================
           RESPONSIVE
        ===================== */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                display: none !important;
            }

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

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

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

            .carousel-controls {
                padding: 10px 14px;
                gap: 10px;
            }

            .carousel-button {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .carousel-dot {
                width: 14px;
                height: 14px;
            }
        }

        /* =====================
           ACCESSIBILITY HELPER
        ===================== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        /* =====================
           NEWS CARDS (3-across linked)
        ===================== */
        .news-section-heading {
            color: var(--primary-blue);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            margin-top: 40px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 30px;
        }

        .news-card {
            display: block;
            text-decoration: none !important;
            color: #222222 !important;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 24px rgba(0,0,0,0.15);
        }

        .news-card:focus {
            outline: 3px solid #031f4b;
            outline-offset: 3px;
        }

        .news-card-inner {
            padding: 24px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-date {
            font-size: 0.9rem;
            font-weight: 700;
            color: #222222 !important;
            margin-bottom: 10px;
        }

        .news-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-blue) !important;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-excerpt {
            font-size: 0.92rem;
            color: #222222 !important;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 16px;
        }

        .news-read-more {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-blue) !important;
            display: block;
        }

        .news-card:hover .news-read-more {
            color: var(--secondary-blue) !important;
        }

        .news-view-all {
            text-align: center;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        /* =====================
           FOOTER BUTTONS
        ===================== */
        a.button-footer,
        .button-footer {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none !important;
            background: white !important;
            color: var(--primary-blue) !important;
            border: 2px solid white !important;
            cursor: pointer;
            transition: all 0.3s;
        }

        a.button-footer:hover,
        .button-footer:hover {
            background: var(--secondary-blue) !important;
            color: white !important;
            border-color: white !important;
        }

        a.button-footer:focus,
        .button-footer:focus {
            outline: 3px solid white;
            outline-offset: 3px;
        }