:root {
            --primary-blue: #1e3a8a;
            --secondary-green: #16a085;
            --accent-gold: #f39c12;
            --light-gray: #f8f9fa;
            --dark-gray: #2c3e50;
            --text-muted: #6c757d;
            --deaf-theme: #4a90e2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        /* Skip link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-blue);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
        }
        
        .skip-link:focus {
            top: 6px;
        }
        
        /* Header Styles */
        .header-top {
            background: var(--primary-blue);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand img {
            height: 60px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-blue) !important;
        }
        
        /* Program Hero Section */
        .program-hero {
            background: linear-gradient(135deg, var(--deaf-theme) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .program-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M200,300 Q400,100 600,300 T1000,300" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><circle cx="150" cy="200" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="850" cy="400" r="80" fill="rgba(255,255,255,0.08)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .program-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 25px;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .program-icon-large {
            width: 120px;
            height: 120px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 2rem;
        }
        
        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            position: absolute;
            bottom: -10px;
            left: 0;
        }
        
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }
        
        /* Phase Cards */
        .phase-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
            height: 100%;
            border-left: 4px solid var(--deaf-theme);
        }
        
        .phase-card:hover {
            transform: translateY(-5px);
        }
        
        .phase-header {
            background: linear-gradient(45deg, var(--deaf-theme), var(--primary-blue));
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .phase-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .phase-age {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .phase-grade {
            background: var(--accent-gold);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 0.5rem;
        }
        
        /* Curriculum Grid */
        .curriculum-item {
            background: var(--light-gray);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .curriculum-icon {
            width: 40px;
            height: 40px;
            background: var(--deaf-theme);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1rem;
        }
        
        /* Skills Development */
        .skills-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .skills-card:hover {
            transform: translateY(-5px);
        }
        
        .skills-header {
            background: var(--secondary-green);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .skills-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        
        .skills-body {
            padding: 2rem;
        }
        
        /* Success Stories */
        .success-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            border-top: 4px solid var(--accent-gold);
        }
        
        .success-quote {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            position: relative;
        }
        
        .success-quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--accent-gold);
            position: absolute;
            left: -20px;
            top: -10px;
        }
        
        .success-author {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .success-achievement {
            color: var(--secondary-green);
            font-size: 0.9rem;
        }
        
        /* Statistics */
        .stat-highlight {
            background: var(--deaf-theme);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Call to Action */
        .cta-section {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .btn-cta {
            background: var(--accent-gold);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px;
        }
        
        .btn-cta:hover {
            background: #e67e22;
            transform: translateY(-2px);
            color: white;
        }
        
        .btn-outline-cta {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 13px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px;
        }
        
        .btn-outline-cta:hover {
            background: white;
            color: var(--primary-blue);
        }
        
        /* Program Navigation */
        .program-nav {
            background: var(--light-gray);
            padding: 40px 0;
        }
        
        .program-nav-item {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1rem;
            text-decoration: none;
            color: var(--dark-gray);
            display: block;
        }
        
        .program-nav-item:hover {
            transform: translateY(-3px);
            color: var(--dark-gray);
            text-decoration: none;
        }
        
        .program-nav-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
            color: white;
        }
        
        .nav-deaf { background: var(--deaf-theme); }
        .nav-blind { background: #9b59b6; }
        .nav-autism { background: #e74c3c; }
        .nav-intellectual { background: var(--secondary-green); }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .program-icon-large {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .phase-card {
                margin-bottom: 1.5rem;
            }
        }
        
        /* Accessibility improvements */
        @media (prefers-contrast: high) {
            :root {
                --primary-blue: #000080;
                --deaf-theme: #000080;
                --secondary-green: #006400;
                --dark-gray: #000000;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }