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

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

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

        /* =====================
           SKIP LINK
        ===================== */
        .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;
        }

        /* =====================
           LAYOUT
        ===================== */
        .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;
        }

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

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

        .page-hero p {
            font-size: 1.1rem;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 1.6rem;
            }
        }

        /* =====================
           BREADCRUMB
        ===================== */
        .breadcrumb-bar {
            background: var(--light-grey);
            padding: 12px 0;
            border-bottom: 1px solid #ccc;
        }

        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            font-size: 0.9rem;
        }

        .breadcrumb li + li::before {
            content: "›";
            margin-right: 6px;
            color: #666;
        }

        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: underline;
            font-weight: 600;
        }

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

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

        .breadcrumb [aria-current="page"] {
            color: #555;
        }

        /* =====================
           PAGE CONTENT WRAPPER
        ===================== */
        .page-content {
            padding: 50px 0 60px;
        }

        /* =====================
           TWO-COLUMN LAYOUT
        ===================== */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            align-items: start;
        }

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

        .sidebar {
            min-width: 0;
        }

        /* =====================
           TYPOGRAPHY — CONTENT BODY
        ===================== */
        .content-body h2 {
            color: var(--primary-blue);
            font-size: 1.7rem;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent-cyan);
        }

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

        .content-body h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 30px;
            margin-bottom: 12px;
        }

        .content-body h4 {
            color: var(--dark-grey);
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 10px;
        }

        .content-body p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #333;
        }

        .content-body a {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: underline;
        }

        .content-body a:hover {
            color: var(--secondary-blue);
        }

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

        /* Lists */
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }

        .content-body ul {
            list-style: none;
            padding-left: 0;
        }

        .content-body ul li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .content-body ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 50%;
        }

        .content-body ol li {
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .content-body ol li::marker {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Nested lists */
        .content-body ul ul,
        .content-body ol ul {
            margin-top: 8px;
            margin-bottom: 8px;
        }

        .content-body ul ul li::before {
            background: transparent;
            border: 2px solid var(--accent-cyan);
        }

        /* =====================
           CALLOUT / HIGHLIGHT BOX
        ===================== */
        .callout-box {
            background: #e8f7fb;
            border-left: 5px solid var(--accent-cyan);
            border-radius: 0 8px 8px 0;
            padding: 20px 24px;
            margin: 28px 0;
        }

        .callout-box p {
            margin-bottom: 0;
        }

        .callout-box.callout-warning {
            background: #fff8e1;
            border-left-color: #c8a217;
        }

        .callout-box.callout-important {
            background: #fdecea;
            border-left-color: #c0392b;
        }

        .callout-box strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 6px;
            color: var(--primary-blue);
        }

        .callout-box.callout-warning strong {
            color: #7a5f00;
        }

        .callout-box.callout-important strong {
            color: #8b1a1a;
        }

        /* =====================
           BUTTONS
           High specificity selectors ensure button styles always
           win over .content-body a and other link rules.
        ===================== */
        a.button,
        a.button-secondary,
        a.button-outline,
        button.button,
        button.button-secondary,
        button.button-outline,
        .button,
        .button-secondary,
        .button-outline {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none !important;
            text-align: center;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
            line-height: 1.3;
        }

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

        a.button:hover,
        button.button:hover,
        .button:hover {
            background: var(--secondary-blue) !important;
            border-color: var(--secondary-blue) !important;
            color: white !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;
        }

        a.button-secondary,
        button.button-secondary,
        .button-secondary {
            background: var(--accent-cyan) !important;
            color: var(--primary-blue) !important;
            border-color: var(--accent-cyan) !important;
            font-weight: 700;
        }

        a.button-secondary:hover,
        button.button-secondary:hover,
        .button-secondary:hover {
            background: #007a99 !important;
            border-color: #007a99 !important;
            color: white !important;
            transform: translateY(-2px);
        }

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

        a.button-outline,
        button.button-outline,
        .button-outline {
            background: transparent !important;
            color: var(--primary-blue) !important;
            border-color: var(--primary-blue) !important;
        }

        a.button-outline:hover,
        button.button-outline:hover,
        .button-outline:hover {
            background: var(--primary-blue) !important;
            color: white !important;
            transform: translateY(-2px);
        }

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

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

        .button-sm {
            padding: 9px 18px;
            font-size: 0.9rem;
        }

        .button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin: 24px 0;
            align-items: center;
        }

        /* =====================
           INFO TABLE
        ===================== */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.97rem;
        }

        .info-table caption {
            text-align: left;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            padding-bottom: 8px;
        }

        .info-table th {
            background: var(--primary-blue);
            color: white;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }

        .info-table td {
            padding: 11px 16px;
            border-bottom: 1px solid #ddd;
            vertical-align: top;
        }

        .info-table tr:nth-child(even) td {
            background: var(--light-grey);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        /* =====================
           SIDEBAR
        ===================== */
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .sidebar-widget-header {
            background: var(--primary-blue);
            color: white;
            padding: 16px 20px;
        }

        .sidebar-widget-header h2,
        .sidebar-widget-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .sidebar-widget-body {
            padding: 20px;
        }

        .sidebar-widget-body p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 14px;
            color: #333;
        }

        .sidebar-widget-body p:last-child {
            margin-bottom: 0;
        }

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

        .sidebar-link-list li {
            border-bottom: 1px solid var(--light-grey);
        }

        .sidebar-link-list li:last-child {
            border-bottom: none;
        }

        .sidebar-link-list a {
            display: block;
            padding: 11px 4px;
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.2s;
        }

        .sidebar-link-list a:hover {
            color: var(--secondary-blue);
            padding-left: 8px;
        }

        .sidebar-link-list a:focus {
            outline: 2px solid #031f4b;
            outline-offset: 2px;
        }

        .sidebar-link-list a i {
            margin-right: 7px;
            color: #007a99;
            width: 16px;
            text-align: center;
        }

        /* Contact info block in sidebar */
        .contact-info-block p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            margin-bottom: 12px;
            color: #333;
        }

        .contact-info-block i {
            color: #007a99;
            margin-top: 3px;
            min-width: 16px;
            text-align: center;
        }

        .contact-info-block a {
            color: var(--primary-blue);
            font-weight: 600;
        }

        .contact-info-block 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: #b3e8f5;
        }

        .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: #b3e8f5;
            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: #b3e8f5;
        }

        /* =====================
           RESPONSIVE
        ===================== */
        @media (max-width: 900px) {
            .content-with-sidebar {
                grid-template-columns: 1fr;
            }

        }

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

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

            .page-hero h1 {
                font-size: 1.6rem;
            }

            .content-body h2 {
                font-size: 1.4rem;
            }
        }

        /* =====================
           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;
        }

        /* =====================
           FEATURE CARDS (full-width page)
        ===================== */
        .feature-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 30px 0 40px;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 30px 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 4px solid var(--accent-cyan);
            text-align: center;
        }

        .feature-card-icon {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }

        .feature-card h3 {
            color: var(--primary-blue);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            margin-top: 0;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .feature-card-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 560px) and (max-width: 768px) {
            .feature-card-grid {
                grid-template-columns: repeat(2, 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;
        }