/* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: #000;
            color: #fff;
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
            border-radius: 0 0 4px 4px;
        }

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

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

        /* Header and Navigation Container */
        .header-nav-container {
            background-color: #69796B;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header-nav-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            min-height: 100px;
        }

        /* Header Styles */
        .header {
            display: flex;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo a {
            display: block;
            text-decoration: none;
        }

        .logo img {
            height: 80px;
            width: auto;
            min-width: 280px;
        }

        /* Navigation Wrapper */
        .nav-wrapper {
            display: flex;
            justify-content: flex-end;
        }

        .nav-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            min-height: 60px;
        }

        /* Navigation Styles */
        .main-nav {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .main-nav > li {
            position: relative;
        }

        .main-nav a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 20px 16px;
            transition: background-color 0.3s, color 0.3s;
            font-weight: 500;
        }

        .main-nav > li > a:hover,
        .main-nav > li > a:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #5a6a5c;
            min-width: 250px;
            max-width: 300px;
            max-height: 400px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            list-style: none;
            z-index: 1000;
        }

        /* Adjust dropdown position if it would go off-screen */
        .main-nav > li:last-child .dropdown,
        .main-nav > li:nth-last-child(2) .dropdown {
            right: 0;
            left: auto;
        }

        /* Alternative: Make dropdown open upward if near bottom of screen */
        @media (min-height: 600px) {
            .dropdown.open-up {
                top: auto;
                bottom: 100%;
                transform: translateY(10px);
            }
            
            .main-nav > li.show-dropdown .dropdown.open-up,
            .main-nav > li:hover .dropdown.open-up,
            .main-nav > li:focus-within .dropdown.open-up {
                transform: translateY(0);
            }
        }

        .dropdown a {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 400;
        }

        .dropdown a:hover,
        .dropdown a:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

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

        /* Show dropdown on hover AND focus */
        .main-nav > li:hover .dropdown,
        .main-nav > li:focus-within .dropdown,
        .main-nav > li.show-dropdown .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 12px;
            margin-left: 5px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .main-nav > li.show-dropdown .dropdown-toggle::after,
        .main-nav > li:hover .dropdown-toggle::after,
        .main-nav > li:focus-within .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Improved focus indicators for WCAG compliance */
        .main-nav a:focus,
        .dropdown a:focus,
        .content-link:focus,
        .widget-link:focus,
        .cta-button:focus,
        .btn:focus,
        .footer-link:focus {
            outline: 3px solid #005fcc;
            outline-offset: 2px;
            box-shadow: 0 0 0 1px #ffffff;
        }

        /* Search Icon in Navigation */
        .search-link {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 20px 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-link:hover,
        .search-link:focus {
            background-color: rgba(255,255,255,0.1);
            outline: 2px solid #fff;
            outline-offset: -2px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background-color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            padding: 0;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1001;
            width: 44px;
            height: 44px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .mobile-menu-toggle:hover {
            background-color: #f0f0f0;
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 3px;
            background-color: #69796B;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            background: #f8f9fa;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }

        .breadcrumb nav {
            font-size: 0.9rem;
        }

        .breadcrumb-list {
            list-style: none;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin: 0 0.5rem;
            color: #222;
        }

        .breadcrumb-link {
            color: #222222;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover,
        .breadcrumb-link:focus {
            color: #333333;
            text-decoration: underline;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .breadcrumb-current {
            color: #111;
            font-weight: 600;
        }

        /* Main Content Layout */
        .main-content {
            padding: 3rem 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Left Content Column */
        .content-column {
            background: #fff;
        }

        .page-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #69796B;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 400;
        }

        .content-section {
            margin-bottom: 2.5rem;
        }

        .content-section h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }

        .content-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }

        .content-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .content-section ul,
        .content-section ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
            color: #555;
        }

        .content-link {
            color: #69796B;
            text-decoration: none;
            font-weight: 600;
        }

        .content-link:hover,
        .content-link:focus {
            color: #5a6a5c;
            text-decoration: underline;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        /* Call-to-Action Boxes */
        .cta-box {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-left: 4px solid #69796B;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }

        .cta-box h3 {
            color: #69796B;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        .cta-box p {
            margin-bottom: 1rem;
        }

        .cta-button {
            background: #69796B;
            color: white;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover,
        .cta-button:focus {
            background: #5a6a5c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            outline: 3px solid #333;
            outline-offset: 2px;
        }

        /* Right Sidebar */
        .sidebar {
            background: #f8f9fa;
            padding: 0;
        }

        .sidebar-widget {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .widget-header {
            background: #69796B;
            color: white;
            padding: 1rem 1.5rem;
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .widget-content {
            padding: 1.5rem;
        }

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

        .widget-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
        }

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

        .widget-link {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .widget-link:hover,
        .widget-link:focus {
            color: #69796B;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .widget-link i {
            margin-right: 0.75rem;
            color: #69796B;
            font-size: 1rem;
            width: 16px;
        }

        .contact-info {
            line-height: 1.8;
        }

        .contact-info p {
            margin-bottom: 0.75rem;
            color: #ffffff !important;
        }

        .contact-info strong {
            color: #ffffff !important;
            font-weight: 700;
        }

        /* Emergency Alert */
        .emergency-alert {
            background: #dc3545;
            color: white;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            border-radius: 4px;
            border-left: 4px solid #a71e2a;
        }

        .emergency-alert h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .emergency-alert p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Document Downloads */
        .document-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
        }

        .document-item:last-child {
            border-bottom: none;
        }

        .document-icon {
            color: #262626;
            font-size: 1.2rem;
            margin-right: 0.75rem;
            width: 20px;
        }

        .document-info {
            flex: 1;
        }

        .document-link {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            display: block;
            margin-bottom: 0.25rem;
        }

        .document-link:hover,
        .document-link:focus {
            color: #69796B;
            text-decoration: underline;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .document-meta {
            font-size: 0.85rem;
            color: #666;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
        }

        .footer-link:hover,
        .footer-link:focus {
            color: white;
            text-decoration: underline;
            outline: 2px solid #69796B;
            outline-offset: 2px;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            text-align: center;
            color: #aaa;
        }

        .footer-section p {
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-section .small-text {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #ffffff;
        }

        /* Button styling for footer */
        .btn {
            background: #69796B;
            color: white;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover,
        .btn:focus {
            background: #5a6a5c;
            outline: 3px solid #333;
            outline-offset: 2px;
        }

        /* Screen reader only content utility */
        .sr-only {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* Mobile Styles */
        @media (max-width: 639px) {
            /* Show mobile menu button */
            .mobile-menu-toggle {
                display: flex;
            }

            /* Adjust nav container for mobile */
            .nav-container {
                justify-content: space-between;
                padding: 0;
            }

            /* Hide and position main nav for mobile */
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #69796B;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding: 80px 0 20px 0;
                margin: 0;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 2px 0 10px rgba(0,0,0,0.3);
                z-index: 1002;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav > li {
                width: 100%;
                margin: 0;
            }

            .main-nav a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
                text-align: left;
            }

            .search-link {
                padding: 15px 20px;
                justify-content: flex-start;
                gap: 0.5rem;
            }

            .search-link::after {
                content: 'Search';
                font-size: 1rem;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                width: 100%;
                box-shadow: none;
                background-color: #5a6a5c;
                max-height: none;
                overflow-y: visible;
            }

            .dropdown-toggle::after {
                float: right;
            }

            .main-nav > li.active .dropdown {
                display: block;
            }

            .main-nav > li.show-dropdown .dropdown {
                display: none;
            }

            .dropdown a {
                padding-left: 40px;
                font-size: 0.9rem;
            }

            /* Mobile content layout */
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .page-title {
                font-size: 2rem;
            }

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

            /* Mobile Menu Overlay */
            .mobile-menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0,0,0,0.5);
                z-index: 999;
            }

            .mobile-menu-overlay.active {
                display: block;
            }
        }

        /* Tablet Styles */
        @media (max-width: 1023px) and (min-width: 640px) {
            .header-nav-grid {
                grid-template-columns: 1fr;
                text-align: center;
                min-height: 120px;
                gap: 1rem;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .nav-wrapper {
                justify-content: center;
            }

            .nav-container {
                justify-content: center;
            }

            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* High contrast mode support improvements */
        @media (prefers-contrast: high) {
            .sidebar-widget {
                border: 3px solid currentColor;
            }

            .cta-box {
                border: 3px solid currentColor;
            }

            .main-nav a {
                border: 2px solid transparent;
            }
            
            .main-nav a:hover,
            .main-nav a:focus {
                border-color: currentColor;
                background-color: #ffffff;
                color: #000000;
            }

            .dropdown a:hover,
            .dropdown a:focus {
                border-color: currentColor;
                background-color: #ffffff;
                color: #000000;
            }

            /* Ensure focus indicators are visible in high contrast */
            .main-nav a:focus,
            .dropdown a:focus,
            .content-link:focus,
            .widget-link:focus,
            .cta-button:focus {
                outline: 3px solid !important;
                outline-offset: 2px !important;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                transform: none !important;
            }

            .dropdown {
                transition: none !important;
                transform: none !important;
            }

            .dropdown-toggle::after {
                transition: none !important;
            }
        }