:root {
            /* Updated Color Scheme */
            --primary: #0047AB;       /* Royal Blue */
            --secondary: #2C2C2C;     /* Graphite Black */
            --accent: #FFC107;        /* Golden Amber */
            --light: #FAFAFA;         /* Off White */
            --dark: #2C2C2C;          /* Graphite Black */
            --bg: #FAFAFA;            /* Off White */
            --text: #2C2C2C;          /* Graphite Black */
            --text-secondary: #5A5A5A; 
            --card-bg: #FFFFFF;
            --card-border: #E0E0E0;
            --header-bg: rgba(255, 255, 255, 0.95);
            --footer-bg: #2C2C2C;
            --comparison-bg: #FFFFFF;
            --hero-gradient: linear-gradient(135deg, #D0E0FF 0%, #FFF3CD 100%);
            --shadow: rgba(0, 0, 0, 0.1);
        }

        .dark-theme {
            /* Dark Theme with updated colors */
            --primary: #4D6AFF;
            --secondary: #FAFAFA;
            --accent: #FFC107;
            --bg: #121212;
            --text: #FAFAFA;
            --text-secondary: #B0B0B0;
            --card-bg: rgba(30, 30, 30, 0.8);
            --card-border: rgba(255, 255, 255, 0.1);
            --header-bg: rgba(18, 18, 18, 0.95);
            --footer-bg: rgba(18, 18, 18, 0.98);
            --comparison-bg: rgba(30, 30, 30, 0.8);
            --hero-gradient: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
            --shadow: rgba(0, 0, 0, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }
        
        body {
            /* Updated Typography: Body */
            font-family: 'Open Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3 {
            /* Updated Typography: Headings */
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--secondary);
        }
        
        h4, h5, h6 {
            /* Updated Typography: Subheadings */
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: var(--secondary);
        }
        
        p {
            color: var(--text-secondary);
        }
        
        /* Accent Text Elements */
        button, .btn, .tool-badge, .percentage, .accent-text {
            /* Updated Typography: Accent Text */
            font-family: 'IBM Plex Sans', sans-serif;
        }
        
        /* Header Styles */
        .navbar {
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px var(--shadow);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .navbar-logo {
            height: 50px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            background: rgba(0, 71, 171, 0.2);
            color: var(--primary) !important;
            transform: translateY(-2px);
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary:hover {
            background: #003A8C;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 71, 171, 0.3);
        }
        
        .btn-outline-dark {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .btn-outline-dark:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Theme Toggle */
        .theme-toggle {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-left: 1rem;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            transform: rotate(15deg);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        /* Hero Section */
        .hero {
            padding: 7rem 0 5rem;
            background: var(--hero-gradient);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--accent);
            position: relative;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        /* Section Styling */
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        /* Card Hover Effects */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 30px var(--shadow);
            border-color: rgba(255, 193, 7, 0.3);
        }
        
        .card-body {
            padding: 2rem;
        }
        
        .card-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        /* Curriculum Section Styles */
        .curriculum-section {
            padding: 3rem 0;
        }
        
        .curriculum-container {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px var(--shadow);
            transition: all 0.3s ease;
        }
        
        .curriculum-container:hover {
            box-shadow: 0 15px 35px var(--shadow);
        }
        
        .curriculum-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--primary);
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .curriculum-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .accordion {
            --accordion-border-radius: 12px;
            --accordion-padding: 1.5rem;
            --accordion-margin: 0.8rem 0;
        }
        
        .accordion-item {
            background: transparent;
            border: 1px solid var(--card-border);
            border-radius: var(--accordion-border-radius) !important;
            margin: var(--accordion-margin);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            border-color: var(--primary);
        }
        
        .accordion-header {
            margin: 0;
        }
        
        .accordion-button {
            width: 100%;
            padding: var(--accordion-padding);
            background: rgba(0, 71, 171, 0.1);
            border: none;
            text-align: left;
            font-family: 'Lato', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-radius: var(--accordion-border-radius) !important;
        }
        
        .accordion-button:hover {
            background: rgba(0, 71, 171, 0.2);
        }
        
        .accordion-button:not(.collapsed) {
            background: rgba(0, 71, 171, 0.2);
            color: var(--primary);
            box-shadow: none;
        }
        
        .accordion-button::after {
            content: "\F282";
            font-family: "bootstrap-icons";
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            border: none;
            width: auto;
            height: auto;
            margin-left: 1rem;
            background-image: none;
            display: none !important;
        }
        
        .accordion-button:not(.collapsed)::after {
            content: "\F286";
            transform: rotate(0deg);
        }
        
        .accordion-body {
            padding: var(--accordion-padding);
            background: var(--card-bg);
            color: var(--text-secondary);
            border-top: 1px solid var(--card-border);
            font-family: 'Open Sans', sans-serif;
        }
        
        .accordion-body ul {
            padding-left: 1.5rem;
        }
        
        .accordion-body li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        
        .accordion-body li::marker {
            color: var(--accent);
        }
        
        .btn-download {
            display: block;
            margin: 2.5rem auto 0;
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 71, 171, 0.3);
            max-width: 300px;
            text-align: center;
        }
        
        .btn-download:hover {
            background: #003A8C;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 71, 171, 0.4);
        }
        
        .btn-download i {
            margin-right: 0.7rem;
            font-size: 1.2rem;
        }
        
        /* Comparison Table */
        .comparison-table {
            background: var(--comparison-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .table th {
            background: rgba(0, 71, 171, 0.2);
            color: var(--secondary);
            font-weight: 600;
            padding: 1.2rem;
            text-align: center;
            vertical-align: middle;
            border-bottom: 2px solid var(--primary);
        }
        
        .table td {
            padding: 1.2rem;
            vertical-align: middle;
            border-bottom: 1px solid var(--card-border);
        }
        
        .check-mark {
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        .cross-mark {
            color: #ef4444;
            font-size: 1.5rem;
        }
        
        /* Outcome Cards */
        .outcome-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            transition: all 0.4s ease;
            height: 100%;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .outcome-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px var(--shadow);
            background: rgba(0, 71, 171, 0.1);
        }
        
        .percentage {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            line-height: 1;
        }
        
        /* Program Snapshot */
        .program-card {
            padding: 2rem;
            border-radius: 15px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            height: 100%;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 193, 7, 0.4);
        }
        
        .tool-badge {
            display: inline-block;
            background: rgba(0, 71, 171, 0.2);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.2rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .tool-badge:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
            border-radius: 20px;
            text-align: center;
            margin: 4rem auto;
            max-width: 1200px;
        }
        
        /* Footer */
        .footer {
            background: var(--footer-bg);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #94a3b8;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #f8fafc;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
            list-style: none;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #94a3b8;
            margin-right: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #94a3b8;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .navbar-logo {
                height: 40px;
            }
             .curriculum-container {
                padding: 1.8rem;
            }
            
            .curriculum-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .theme-toggle {
                width: 40px;
                height: 40px;
            }
            
            .navbar-logo {
                height: 35px;
            }
             .accordion-button {
                font-size: 1.1rem;
                padding: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 5rem 0 3rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .card {
                margin-bottom: 1.5rem;
            }
            
            .navbar-logo {
                height: 30px;
            }

             .curriculum-title {
                font-size: 1.6rem;
            }
            
            .accordion-button {
                padding: 1rem;
                font-size: 1rem;
            }
            
            .accordion-body {
                padding: 1.2rem;
            }
        }

        /* Demo Content Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .grid {
            display: grid;
            gap: 2rem;
        }
        
        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .text-center {
            text-align: center;
        }
        
        .mt-8 {
            margin-top: 2rem;
        }
        
        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .color-palette {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .color-card {
            width: 150px;
            height: 150px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1rem;
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .color-card.dark {
            color: #333;
        }
        
        .typography-demo {
            margin: 2rem 0;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid var(--card-border);
        }
        
        .font-sample {
            margin-bottom: 2rem;
        }
        
        .toggle-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 1rem;
        }