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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #1E66B8;
            min-height: 100vh;
        }

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

        .header {
            background: #ffffff;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #1E66B8;
            margin-bottom: 1rem;
        }

        .header p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
        }

        .header a {
            color: #1E66B8;
            text-decoration: none;
            padding: 0.5rem 0;
        }

        .intro-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .intro-section h2 {
            color: #2d3748;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .intro-section p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #4a5568;
        }

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

        .stat-card {
            background: #1E66B8;
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

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

        .resource-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .resource-card h3 {
            color: #2d3748;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .resource-card p {
            color: #4a5568;
            margin-bottom: 1.5rem;
        }

        .resource-links {
            list-style: none;
        }

        .resource-links li {
            margin-bottom: 0.5rem;
        }

        .resource-links a {
            color: #1E66B8;
            text-decoration: none;
            padding: 0.5rem 0;
            display: inline-block;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .resource-links a:hover {
            color: #357abd;
            border-bottom-color: #357abd;
        }

        .resource-links a:focus {
            outline: 2px solid #4a90e2;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .assistive-tech {
            background: #ffffff;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .tech-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.5rem;
            border-left: 4px solid #4a90e2;
        }

        .tech-item h4 {
            color: #2d3748;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .tech-item p {
            color: #4a5568;
            font-size: 0.95rem;
        }

        .icon {
            width: 24px;
            height: 24px;
            display: inline-block;
        }

        .cta-section {
            background: #1E66B8;
            color: white;
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            margin-top: 2rem;
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem 2rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

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

        .footer {
            text-align: center;
            padding: 2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 2rem;
        }

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

        .skip-link:focus {
            top: 6px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

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

            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            .nav-links a {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

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

        /* Video section styles */
        .video-section-main {
            background: #ffffff;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .video-section-main h2 {
            color: #2d3748;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .video-section-main > p {
            color: #4a5568;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

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

        .video-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .video-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #4a90e2;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-info h4 {
            color: #2d3748;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .video-info p {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .resource-card, .intro-section, .assistive-tech {
                border: 2px solid #000;
            }
        }

        /* Page navigation styles */
        .page-nav {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(74, 144, 226, 0.2);
        }

        .nav-title {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .nav-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            /* background: #e6f1ff; */
            color: #1E66B8;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid #d1e7ff;
            display: inline-block;
        }

        .nav-links a:hover {
            background: #cce0ff;
            color: #357abd;
            border-color: #b3d1ff;
            transform: translateY(-2px);
        }

        .nav-links a:focus {
            outline: 2px solid #4a90e2;
            outline-offset: 2px;
            background: #d1e7ff;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Section scroll margin for better positioning */
        section[id] {
            scroll-margin-top: 2rem;
        }

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