:root {
            --navy: #0F172A;
            --gold: #FCD269;
            --blue: #2B6CB0;
            --surface: #f7f9fb;
            --surface-1: #ffffff;
            --surface-2: #f1f5f9;
            --text: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', 'Courier New', monospace;
        }

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

        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.67;
            color: var(--text);
            background: var(--surface);
            -webkit-font-smoothing: antialiased;
        }

        /* Header Navigation */
        .ctme-header {
            background: var(--surface-1);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .ctme-header__wrap {
            width: min(100% - 32px, 1280px);
            margin-inline: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }

        .ctme-header__logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 18px;
            color: var(--navy);
        }

        .ctme-header__logo img {
            height: 75px;
            width: auto;
            margin-right: 12px;
        }
        
        @media all and (max-width: 1024px) {
            .ctme-header__logo img {
                height: 68px;
            }
        }
        
        @media all and (max-width: 767px) {
            .ctme-header__logo img {
                height: 60px;
            }
        }

        .ctme-header__nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .ctme-header__nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .ctme-header__nav a:hover {
            color: var(--blue);
        }

        .ctme-header__dropdown {
            position: relative;
        }

        .ctme-header__dropdown > a {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 500;
            color: var(--navy);
            cursor: pointer;
        }

        .ctme-header__dropdown > a::after {
            content: '▾';
            font-size: 10px;
            opacity: 0.6;
        }

        .ctme-header__dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
            background: var(--surface-1);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 220px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
            z-index: 1000;
        }

        .ctme-header__dropdown:hover .ctme-header__dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ctme-header__dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: 14px;
            color: var(--text);
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .ctme-header__dropdown-menu a:hover {
            background: var(--surface-2);
            color: var(--blue);
        }

        .ctme-header__cta {
            margin-left: 16px;
        }

        /* Button Styles */
        .ctme-home__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 58px;
            padding: 16px 36px;
            border-radius: 8px;
            border: 1px solid transparent;
            font-family: var(--font-display);
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
        }

        .ctme-home__btn:hover,
        .ctme-home__btn:focus {
            text-decoration: none;
            transform: translateY(-1px);
            outline: none;
        }

        /* Keyboard-only focus ring — replaces the default blue box */
        .ctme-home__btn:focus-visible {
            outline: 2px solid var(--navy);
            outline-offset: 3px;
        }

        .ctme-home__btn--primary {
            background: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
        }

        .ctme-home__btn--secondary {
            background: transparent;
            color: var(--navy);
            border-color: var(--navy);
        }

        .ctme-home__btn--secondary:hover,
        .ctme-home__btn--secondary:focus {
            background: var(--navy);
            color: #fff;
        }

        /* Hero Section */
        .ctme-hero {
            background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
            color: white;
            padding: 96px 24px;
            position: relative;
            overflow: hidden;
        }

        .ctme-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(to right, rgba(198, 198, 205, .1) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(198, 198, 205, .1) 1px, transparent 1px);
            background-size: 24px 24px;
            pointer-events: none;
        }

        .ctme-hero__inner {
            max-width: 1080px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .ctme-hero h1 {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 24px;
        }

        .ctme-hero__lead {
            font-size: 22px;
            line-height: 1.5;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .ctme-hero__cta {
            display: inline-block;
            padding: 16px 32px;
            background: var(--gold);
            color: var(--navy);
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: transform 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
        }

        .ctme-hero__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(252, 210, 105, 0.4);
        }

        .ctme-hero__cta:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
        }

        /* Content Section */
        .ctme-content {
            max-width: 1080px;
            margin: 0 auto;
            padding: 96px 24px;
        }

        .ctme-content h2 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            line-height: 1.12;
            margin-bottom: 32px;
            color: var(--navy);
        }

        .ctme-content h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin: 48px 0 24px;
            color: var(--navy);
        }

        .ctme-content p {
            margin-bottom: 24px;
            font-size: 18px;
            line-height: 1.75;
        }

        .ctme-content ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 32px 0;
            list-style: none;
        }

        .ctme-content li {
            padding-left: 24px;
            position: relative;
        }

        .ctme-content li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 24px;
        }

        .ctme-content__note {
            background: var(--surface-2);
            border-left: 4px solid var(--gold);
            padding: 24px;
            margin: 32px 0;
            font-size: 16px;
            font-style: italic;
            color: var(--text-muted);
        }

        .ctme-content__highlight {
            background: var(--navy);
            color: white;
            padding: 48px;
            margin: 48px 0;
            border-radius: 12px;
            text-align: center;
        }

        .ctme-content__highlight h2 {
            color: white;
            margin-bottom: 24px;
        }

        /* Course Features */
        .ctme-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            margin: 64px 0;
        }

        .ctme-feature {
            background: var(--surface-1);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
        }

        .ctme-feature h3 {
            margin-top: 0;
        }

        /* Pricing Card */
        .ctme-pricing {
            background: var(--surface-1);
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 48px;
            max-width: 600px;
            margin: 64px auto;
            text-align: center;
        }

        .ctme-pricing__price {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
        }

        .ctme-pricing__features {
            list-style: none;
            margin: 32px 0;
            text-align: left;
        }

        .ctme-pricing__features li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
        }

        .ctme-pricing__features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
            font-size: 20px;
        }

        /* Testimonials */
        .ctme-testimonials {
            background: var(--surface-2);
            padding: 96px 24px;
        }

        .ctme-testimonials__inner {
            max-width: 1080px;
            margin: 0 auto;
        }

        .ctme-testimonials h2 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 64px;
            color: var(--navy);
        }

        .ctme-testimonials__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .ctme-testimonial {
            background: var(--surface-1);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
        }

        .ctme-testimonial__quote {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
            font-style: italic;
        }

        .ctme-testimonial__author {
            font-weight: 700;
            color: var(--navy);
        }

        /* FAQ Section */
        .ctme-faq {
            max-width: 1080px;
            margin: 0 auto;
            padding: 96px 24px;
        }

        .ctme-faq h2 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 64px;
            color: var(--navy);
        }

        .ctme-faq__item {
            margin-bottom: 32px;
        }

        .ctme-faq__question {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .ctme-faq__answer {
            font-size: 18px;
            line-height: 1.75;
            color: var(--text);
        }

        /* Footer */
        .ctme-footer {
            background: var(--navy);
            color: white;
            padding: 96px 24px 48px;
        }

        .ctme-footer__inner {
            max-width: 1280px;
            margin: 0 auto;
        }

        .ctme-footer__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 64px;
        }

        .ctme-footer__brand h3 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .ctme-footer__brand p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.85;
            margin-bottom: 24px;
        }

        .ctme-footer__section h4 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .ctme-footer__section ul {
            list-style: none;
        }

        .ctme-footer__section li {
            margin-bottom: 12px;
        }

        .ctme-footer__section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.2s;
        }

        .ctme-footer__section a:hover {
            color: var(--gold);
        }

        .ctme-footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
            opacity: 0.75;
        }

        .ctme-footer__bottom a {
            color: white;
            text-decoration: none;
        }

        .ctme-footer__bottom a:hover {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .ctme-hero h1 {
                font-size: 42px;
            }

            .ctme-features {
                grid-template-columns: 1fr;
            }

            .ctme-footer__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 720px) {
            .ctme-header__nav {
                display: none;
            }

            .ctme-hero {
                padding: 64px 24px;
            }

            .ctme-hero h1 {
                font-size: 36px;
            }

            .ctme-hero__lead {
                font-size: 18px;
            }

            .ctme-content {
                padding: 64px 24px;
            }

            .ctme-content h2 {
                font-size: 32px;
            }

            .ctme-content ul {
                grid-template-columns: 1fr;
            }

            .ctme-testimonials__grid {
                grid-template-columns: 1fr;
            }

            .ctme-footer__grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--navy);
            color: white;
            padding: 24px;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            display: none;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cookie-consent.show {
            display: block;
        }

        .cookie-consent__content {
            max-width: 1290px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cookie-consent__text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-consent__text p {
            margin: 0 0 8px 0;
            line-height: 1.5;
        }

        .cookie-consent__text a {
            color: var(--gold);
            text-decoration: underline;
        }

        .cookie-consent__text a:hover {
            color: #fff;
        }

        .cookie-consent__actions {
            display: flex;
            gap: 12px;
        }

        .cookie-consent__btn {
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cookie-consent__btn--accept {
            background: var(--gold);
            color: var(--navy);
        }

        .cookie-consent__btn--accept:hover {
            background: #ffd54f;
        }

        .cookie-consent__btn--decline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-consent__btn--decline:hover {
            border-color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 720px) {
            .cookie-consent__content {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-consent__actions {
                width: 100%;
                flex-direction: column;
            }

            .cookie-consent__btn {
                width: 100%;
            }
        }
