       /* ========================================
           SHORT CPD & UPSKILLING - Color Palette
           Fresh, Modern, Energetic
           ======================================== */
        :root {
            --cpd-deep: #0f2744;
            --cpd-navy: #1a3a5c;
            --cpd-navy-light: #234e70;
            --cpd-teal: #0d9488;
            --cpd-teal-light: #14b8a6;
            --cpd-gold: #f59e0b;
            --cpd-gold-light: #fbbf24;
            --cpd-cream: #faf9f7;
            --cpd-warm-sand: #f5f3ef;
            --cpd-text: #1e293b;
            --cpd-text-light: #64748b;
            --cpd-gradient: linear-gradient(135deg, #1a3a5c 0%, #234e70 100%);
            --cpd-gradient-teal: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            --cpd-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - Upskilling & Short CPD
           Fresh, inviting design matching short-cpd1.html
           ======================================== */
        .cpd-hero {
            position: relative;
            min-height: 600px;
            background: linear-gradient(135deg, var(--cpd-deep) 0%, var(--cpd-navy) 50%, var(--cpd-navy-light) 100%);
            padding: 120px 40px 80px;
            overflow: hidden;
        }

        /* Animated background pattern */
        .cpd-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
            pointer-events: none;
        }

        /* Floating shapes animation */
        .cpd-hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation: cpd-float 8s ease-in-out infinite;
        }

        @keyframes cpd-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-20px, 20px) scale(1.05); }
        }

        @keyframes cpd-fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes cpd-slideIn {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes cpd-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .cpd-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Content */
        .cpd-hero-content {
            color: #ffffff;
        }

        /* Eyebrow Badge */
        .cpd-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 28px;
            animation: cpd-fadeUp 0.6s ease;
        }

        .cpd-hero-eyebrow .dot {
            width: 8px;
            height: 8px;
            background: var(--cpd-teal-light);
            border-radius: 50%;
            animation: cpd-pulse 2s ease-in-out infinite;
        }

        .cpd-hero-eyebrow span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Main Title */
        .cpd-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(38px, 4.5vw, 58px);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            animation: cpd-fadeUp 0.6s ease 0.1s both;
            color: #fff;
        }

        .cpd-hero-title .highlight {
            position: relative;
            color: var(--cpd-gold);
            display: inline-block;
        }

        .cpd-hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(245, 158, 11, 0.3);
            border-radius: 4px;
            z-index: -1;
        }

        /* Subtitle */
        .cpd-hero-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            max-width: 520px;
            animation: cpd-fadeUp 0.6s ease 0.2s both;
        }

        /* Core Message Card */
        .cpd-hero-message {
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0.1) 100%);
            border: 1px solid rgba(13, 148, 136, 0.3);
            border-left: 4px solid var(--cpd-teal-light);
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 35px;
            animation: cpd-fadeUp 0.6s ease 0.25s both;
        }

        .cpd-hero-message p {
            font-size: 16px;
            color: #ffffff;
            margin: 0;
            line-height: 1.6;
        }

        .cpd-hero-message strong {
            color: var(--cpd-teal-light);
        }

        /* CTA Buttons */
        .cpd-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: cpd-fadeUp 0.6s ease 0.3s both;
        }

        .cpd-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cpd-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .cpd-btn-primary {
            background: linear-gradient(135deg, var(--cpd-teal) 0%, var(--cpd-teal-light) 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
        }

        .cpd-btn-primary:hover {
            background: linear-gradient(135deg, var(--cpd-teal-light) 0%, var(--cpd-teal) 100%) !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
            color: #ffffff !important;
        }

        .cpd-btn-primary:hover svg {
            transform: translateX(4px);
        }

        .cpd-btn-secondary {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
            border: 2px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(5px);
        }

        .cpd-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff !important;
        }

        /* Delivery Modes Strip */
        .cpd-modes-strip {
            margin-top: 40px;
            animation: cpd-fadeUp 0.6s ease 0.4s both;
        }

        .cpd-modes-strip-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 14px;
        }

        .cpd-modes-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cpd-mode-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            transition: all 0.3s ease;
        }

        .cpd-mode-tag:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .cpd-mode-tag svg {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Right Side - Feature Cards */
        .cpd-hero-visual {
            position: relative;
            animation: cpd-fadeUp 0.8s ease 0.4s both;
        }

        .cpd-cards-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cpd-feature-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px 28px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            transform-origin: left center;
        }

        .cpd-feature-card:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .cpd-feature-card:nth-child(1) { animation: cpd-slideIn 0.6s ease 0.5s both; }
        .cpd-feature-card:nth-child(2) { animation: cpd-slideIn 0.6s ease 0.65s both; }
        .cpd-feature-card:nth-child(3) { animation: cpd-slideIn 0.6s ease 0.8s both; }

        .cpd-feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cpd-feature-icon svg {
            width: 26px;
            height: 26px;
        }

        .cpd-feature-icon.teal {
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(13, 148, 136, 0.08));
            color: var(--cpd-teal);
        }

        .cpd-feature-icon.gold {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
            color: var(--cpd-gold);
        }

        .cpd-feature-icon.navy {
            background: linear-gradient(135deg, rgba(15, 39, 68, 0.12), rgba(15, 39, 68, 0.06));
            color: var(--cpd-navy);
        }

        .cpd-feature-content h3 {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--cpd-navy);
            margin-bottom: 6px;
        }

        .cpd-feature-content p {
            font-family: var(--font-body);
            font-size: 14px;
            color: #5a6a7a;
            line-height: 1.5;
            margin: 0;
        }

        /* CPD Hero Responsive Design */
        @media (max-width: 1024px) {
            .cpd-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .cpd-hero-visual {
                order: -1;
            }

            .cpd-cards-stack {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .cpd-hero {
                padding: 100px 24px 60px;
                min-height: auto;
            }

            .cpd-hero-title {
                font-size: 32px;
            }

            .cpd-hero-subtitle {
                font-size: 16px;
            }

            .cpd-hero-ctas {
                flex-direction: column;
            }

            .cpd-btn {
                justify-content: center;
                width: 100%;
            }

            .cpd-feature-card {
                padding: 20px;
            }

            .cpd-modes-tags {
                justify-content: center;
            }
        }

        /* ========================================
           SECTION 1: Intro - Learn in Weeks
           Matching short-cpd1.html design
           ======================================== */
        .cpd-intro {
            background: linear-gradient(180deg, var(--cpd-cream) 0%, #ffffff 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .cpd-intro::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .cpd-intro-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Opening Statement */
        .cpd-intro-hook {
            text-align: center;
            margin-bottom: 60px;
        }

        .cpd-intro-hook-text {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: clamp(22px, 2.5vw, 32px);
            font-weight: 500;
            color: var(--cpd-navy);
            line-height: 1.5;
            position: relative;
        }

        .cpd-intro-hook-text::before,
        .cpd-intro-hook-text::after {
            content: '"';
            font-size: 1.3em;
            color: var(--cpd-teal);
            font-weight: 300;
        }

        .cpd-intro-hook-text .em {
            color: var(--cpd-teal);
            font-weight: 700;
            font-style: normal;
        }

        /* Main content grid */
        .cpd-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cpd-intro-text {
            max-width: 520px;
        }

        .cpd-intro-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
            padding: 8px 16px;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .cpd-intro-label span {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--cpd-teal);
        }

        .cpd-intro-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.5vw, 44px);
            font-weight: 800;
            color: var(--cpd-navy);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .cpd-intro-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 28px;
            border-left: 3px solid var(--cpd-gold);
            padding-left: 20px;
        }

        .cpd-intro-body {
            font-family: var(--font-body);
            font-size: 16px;
            color: #5a6a7a;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .cpd-intro-modes {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 36px;
        }

        .cpd-intro-mode {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: #f7f7f7;
            border: 1px solid #e5e5e5;
            border-radius: 20px;
            font-size: 13px;
            color: #4a5568;
            transition: all 0.3s ease;
        }

        .cpd-intro-mode:hover {
            background: #ffffff;
            border-color: var(--cpd-teal);
            color: var(--cpd-teal);
        }

        .cpd-intro-mode svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .cpd-intro-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cpd-intro-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cpd-intro-btn-primary {
            background: var(--cpd-navy) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(15, 39, 68, 0.25);
        }

        .cpd-intro-btn-primary:hover {
            background: var(--cpd-navy-light) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(15, 39, 68, 0.3);
            color: #ffffff !important;
        }

        .cpd-intro-btn-secondary {
            background: transparent !important;
            color: var(--cpd-navy) !important;
            border: 2px solid var(--cpd-navy);
        }

        .cpd-intro-btn-secondary:hover {
            background: var(--cpd-navy) !important;
            color: #ffffff !important;
        }

        /* Benefit Cards */
        .cpd-intro-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .cpd-benefit-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cpd-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            transition: height 0.4s ease;
        }

        .cpd-benefit-card:hover::before {
            height: 100%;
        }

        .cpd-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .cpd-benefit-card:nth-child(1)::before { background: var(--cpd-teal); }
        .cpd-benefit-card:nth-child(2)::before { background: var(--cpd-gold); }
        .cpd-benefit-card:nth-child(3)::before { background: var(--cpd-navy); }
        .cpd-benefit-card:nth-child(4)::before { background: #e53e3e; }

        .cpd-benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .cpd-benefit-icon svg {
            width: 24px;
            height: 24px;
        }

        .cpd-benefit-card:nth-child(1) .cpd-benefit-icon { background: rgba(13, 148, 136, 0.1); color: var(--cpd-teal); }
        .cpd-benefit-card:nth-child(2) .cpd-benefit-icon { background: rgba(245, 158, 11, 0.1); color: var(--cpd-gold); }
        .cpd-benefit-card:nth-child(3) .cpd-benefit-icon { background: rgba(15, 39, 68, 0.08); color: var(--cpd-navy); }
        .cpd-benefit-card:nth-child(4) .cpd-benefit-icon { background: rgba(229, 62, 62, 0.1); color: #e53e3e; }

        .cpd-benefit-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--cpd-navy);
            margin-bottom: 8px;
        }

        .cpd-benefit-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .cpd-intro-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .cpd-intro-text {
                max-width: 100%;
                text-align: center;
            }
            .cpd-intro-subtitle {
                border-left: none;
                padding-left: 0;
                border-top: 3px solid var(--cpd-gold);
                padding-top: 20px;
            }
            .cpd-intro-modes { justify-content: center; }
            .cpd-intro-ctas { justify-content: center; }
            .cpd-intro-benefits { max-width: 500px; margin: 0 auto; }
        }

        @media (max-width: 600px) {
            .cpd-intro { padding: 60px 20px; }
            .cpd-intro-benefits { grid-template-columns: 1fr; }
            .cpd-intro-ctas { flex-direction: column; }
            .cpd-intro-btn { justify-content: center; width: 100%; }
            .cpd-intro-hook-text { font-size: 20px; }
        }

        /* ========================================
           SECTION 2: What Are Short & CPD Courses?
           ======================================== */
        .cpd-what {
            /* background: #ffffff; */
            background: var(--cpd-cream);
            padding: 100px 40px;
            position: relative;
        }

        .cpd-what-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cpd-what-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .cpd-what-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.5vw, 46px);
            font-weight: 800;
            color: var(--cpd-navy);
            margin-bottom: 16px;
        }

        .cpd-what-header .subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: #5a6a7a;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cpd-what-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .cpd-what-intro p {
            font-family: var(--font-body);
            font-size: 17px;
            color: #4a5568;
            line-height: 1.8;
        }

        .cpd-what-intro .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cpd-teal);
            margin-bottom: 16px;
        }

        /* Tier Cards */
        .cpd-tiers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 70px;
        }

        .cpd-tier-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            overflow: hidden;
        }

        .cpd-tier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
        }

        .cpd-tier-card.tier-1 {
            background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
            box-shadow: 0 8px 30px rgba(13, 148, 136, 0.12);
        }
        .cpd-tier-card.tier-1::before { background: var(--cpd-teal); }
        .cpd-tier-card.tier-1:hover { border-color: var(--cpd-teal); transform: translateY(-8px); }

        .cpd-tier-card.tier-2 {
            background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12);
        }
        .cpd-tier-card.tier-2::before { background: var(--cpd-gold); }
        .cpd-tier-card.tier-2:hover { border-color: var(--cpd-gold); transform: translateY(-8px); }

        .cpd-tier-card.tier-3 {
            background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
            box-shadow: 0 8px 30px rgba(15, 39, 68, 0.1);
        }
        .cpd-tier-card.tier-3::before { background: var(--cpd-navy); }
        .cpd-tier-card.tier-3:hover { border-color: var(--cpd-navy); transform: translateY(-8px); }

        .cpd-tier-level {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .tier-1 .cpd-tier-level { background: rgba(13, 148, 136, 0.15); color: var(--cpd-teal); }
        .tier-2 .cpd-tier-level { background: rgba(245, 158, 11, 0.15); color: #b45309; }
        .tier-3 .cpd-tier-level { background: rgba(15, 39, 68, 0.1); color: var(--cpd-navy); }

        .cpd-tier-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--cpd-navy);
            margin-bottom: 12px;
        }

        .cpd-tier-credits {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 14px;
        }

        .cpd-tier-credits svg {
            width: 16px;
            height: 16px;
        }

        .cpd-tier-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        /* Two Types Section */
        .cpd-types-section {
            margin-bottom: 60px;
        }

        .cpd-types-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .cpd-types-header h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--cpd-navy);
        }

        .cpd-types-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .cpd-type-card {
            background: var(--cpd-cream);
            border-radius: 16px;
            padding: 36px 32px;
            position: relative;
            transition: all 0.3s ease;
        }

        .cpd-type-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .cpd-type-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .cpd-type-icon svg {
            width: 28px;
            height: 28px;
        }

        .cpd-type-card.short-courses .cpd-type-icon {
            background: linear-gradient(135deg, var(--cpd-teal), var(--cpd-teal-light));
            color: #ffffff;
        }

        .cpd-type-card.cpd-courses .cpd-type-icon {
            background: linear-gradient(135deg, var(--cpd-gold), var(--cpd-gold-light));
            color: #ffffff;
        }

        .cpd-type-card h4 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--cpd-navy);
            margin-bottom: 12px;
        }

        .cpd-type-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: #5a6a7a;
            line-height: 1.7;
            margin: 0;
        }

        /* Key Points Strip */
        .cpd-key-points {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding: 30px 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }

        .cpd-key-point {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cpd-key-point-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(13, 148, 136, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cpd-teal);
        }

        .cpd-key-point-icon svg {
            width: 20px;
            height: 20px;
        }

        .cpd-key-point span {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--cpd-navy);
        }

        /* Closing Tagline */
        .cpd-what-tagline {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cpd-what-tagline blockquote {
            font-family: var(--font-heading);
            font-size: clamp(18px, 2vw, 22px);
            font-weight: 500;
            color: var(--cpd-navy);
            line-height: 1.6;
            margin: 0;
            padding: 30px 40px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
            border-radius: 16px;
            border-left: 4px solid var(--cpd-gold);
            position: relative;
        }

        .cpd-what-tagline blockquote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 50px;
            color: var(--cpd-gold);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        @media (max-width: 1024px) {
            .cpd-tiers {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 70px;
            }
            .cpd-types-grid { grid-template-columns: 1fr; }
            .cpd-key-points { gap: 24px; }
        }

        @media (max-width: 600px) {
            .cpd-what { padding: 60px 20px; }
            .cpd-tier-card { padding: 24px 20px; }
            .cpd-type-card { padding: 28px 24px; }
            .cpd-key-points { flex-direction: column; align-items: center; }
            .cpd-what-tagline blockquote { padding: 24px 20px 24px 30px; font-size: 16px; }
        }

        /* ========================================
           SHARED SECTION STYLES
           ======================================== */
        .cpd-section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .cpd-section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 148, 136, 0.1);
            color: var(--cpd-teal);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .cpd-section-title {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--cpd-navy);
            margin-bottom: 12px;
        }
        .cpd-section-subtitle {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--cpd-text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .cpd-section-title { font-size: 28px; }
        }

        /* ========================================
           AUDIENCE SECTION (Expert Guidance Style)
           ======================================== */
        .cpd-audience-section {
            padding: 100px 60px;
            background: var(--cpd-cream);
        }
        .cpd-audience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .cpd-audience-text {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--cpd-text-light);
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .cpd-audience-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .cpd-audience-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .cpd-audience-icon {
            width: 50px;
            height: 50px;
            background: var(--cpd-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            flex-shrink: 0;
        }
        .cpd-audience-icon svg {
            width: 24px;
            height: 24px;
        }
        .cpd-audience-content h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--cpd-navy);
            margin-bottom: 6px;
        }
        .cpd-audience-content p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--cpd-text-light);
            line-height: 1.6;
            margin: 0;
        }
        .cpd-audience-image-wrapper {
            position: relative;
        }
        .cpd-audience-image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        .cpd-audience-floating-card {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: #ffffff;
            padding: 24px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        .cpd-audience-floating-card .number {
            display: block;
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--cpd-teal);
            line-height: 1;
        }
        .cpd-audience-floating-card .label {
            display: block;
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--cpd-text-light);
            margin-top: 4px;
        }
        @media (max-width: 992px) {
            .cpd-audience-section { padding: 80px 40px; }
            .cpd-audience-grid { grid-template-columns: 1fr; gap: 50px; }
            .cpd-audience-floating-card { left: 20px; bottom: 20px; }
        }
        @media (max-width: 576px) {
            .cpd-audience-section { padding: 60px 24px; }
            .cpd-audience-image-wrapper img { height: 300px; }
            .cpd-audience-floating-card { padding: 18px 22px; }
            .cpd-audience-floating-card .number { font-size: 28px; }
        }

        /* Audience Stats Strip */
        .cpd-audience-stats {
            background: linear-gradient(135deg, var(--cpd-navy) 0%, var(--cpd-navy-light) 100%);
            padding: 50px 60px;
            position: relative;
            overflow: hidden;
        }
        .cpd-audience-stats::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }
        .cpd-audience-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .cpd-audience-stat-item {
            text-align: center;
            position: relative;
            padding: 0 20px;
        }
        .cpd-audience-stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
        }
        .cpd-audience-stat-value {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 8px;
        }
        .cpd-audience-stat-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        @media (max-width: 992px) {
            .cpd-audience-stats { padding: 40px 30px; }
            .cpd-audience-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .cpd-audience-stat-item { border-right: none; padding: 20px 0; }
            .cpd-audience-stat-item::after { display: none; }
        }
        @media (max-width: 576px) {
            .cpd-audience-stats-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           CREDITS & STACKING SECTION
           ======================================== */
        .cpd-credits-section {
            padding: 80px 60px;
            background: linear-gradient(165deg, var(--cpd-deep) 0%, var(--cpd-navy) 100%);
            position: relative;
            overflow: hidden;
        }
        .cpd-credits-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .cpd-credits-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .cpd-credits-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .cpd-credits-header .cpd-section-tag {
            background: rgba(245, 158, 11, 0.15);
            color: var(--cpd-gold-light);
        }
        .cpd-credits-header .cpd-section-title {
            color: #ffffff;
        }
        .cpd-credits-header .cpd-section-subtitle {
            color: rgba(255,255,255,0.7);
        }
        .cpd-credits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .cpd-credit-block {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 28px 22px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .cpd-credit-block:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--cpd-gold);
            transform: translateY(-4px);
        }
        .cpd-credit-icon {
            width: 50px;
            height: 50px;
            background: var(--cpd-gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        .cpd-credit-icon svg {
            width: 24px;
            height: 24px;
            stroke: #ffffff;
        }
        .cpd-credit-title {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .cpd-credit-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.65);
            line-height: 1.5;
            margin: 0;
        }
        .cpd-stacking-visual {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 16px;
        }
        .cpd-stack-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .cpd-stack-bar {
            width: 100px;
            background: var(--cpd-gradient-teal);
            border-radius: 8px 8px 0 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 12px;
            transition: all 0.3s ease;
        }
        .cpd-stack-bar:hover {
            transform: scaleY(1.05);
        }
        .cpd-stack-step:nth-child(1) .cpd-stack-bar { height: 60px; }
        .cpd-stack-step:nth-child(2) .cpd-stack-bar { height: 100px; }
        .cpd-stack-step:nth-child(3) .cpd-stack-bar { height: 140px; }
        .cpd-stack-step:nth-child(4) .cpd-stack-bar { height: 180px; background: var(--cpd-gradient-gold); }
        .cpd-stack-bar span {
            font-family: var(--font-heading);
            font-size: 11px;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
        }
        .cpd-stack-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            text-align: center;
        }
        @media (max-width: 992px) {
            .cpd-credits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .cpd-credits-section { padding: 60px 30px; }
            .cpd-stacking-visual { flex-wrap: wrap; gap: 20px; }
            .cpd-stack-bar { width: 80px; }
        }
        @media (max-width: 600px) {
            .cpd-credits-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 5: How You Can Study & Get Started
           ======================================== */
        .cpd-study {
            background: linear-gradient(180deg, #ffffff 0%, var(--cpd-cream) 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }
        .cpd-study::before {
            content: 'ANY';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(200px, 25vw, 400px);
            font-weight: 900;
            color: var(--cpd-navy);
            opacity: 0.02;
            pointer-events: none;
            letter-spacing: -10px;
        }
        .cpd-study-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .cpd-study-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .cpd-study-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 3.5vw, 46px);
            font-weight: 800;
            color: var(--cpd-navy);
            margin-bottom: 16px;
        }
        .cpd-study-header .subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: #5a6a7a;
        }
        /* Feature Strip - 3 blocks */
        .cpd-study-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-bottom: 60px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        .cpd-study-feature {
            background: #ffffff;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(0, 0, 0, 0.06);
        }
        .cpd-study-feature:last-child {
            border-right: none;
        }
        .cpd-study-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            transition: height 0.3s ease;
        }
        .cpd-study-feature:hover {
            background: #fafafa;
        }
        .cpd-study-feature:hover::before {
            height: 6px;
        }
        /* Color variants */
        .cpd-study-feature.feature-mode::before { background: linear-gradient(90deg, var(--cpd-teal), var(--cpd-teal-light)); }
        .cpd-study-feature.feature-place::before { background: linear-gradient(90deg, var(--cpd-gold), var(--cpd-gold-light)); }
        .cpd-study-feature.feature-discipline::before { background: linear-gradient(90deg, var(--cpd-navy), var(--cpd-navy-light)); }
        .cpd-study-feature-keyword {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .feature-mode .cpd-study-feature-keyword { color: var(--cpd-teal); }
        .feature-place .cpd-study-feature-keyword { color: var(--cpd-gold); }
        .feature-discipline .cpd-study-feature-keyword { color: var(--cpd-navy); }
        .cpd-study-feature h3 {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 800;
            color: var(--cpd-navy);
            margin-bottom: 16px;
        }
        .cpd-study-feature p {
            font-family: var(--font-body);
            font-size: 15px;
            color: #5a6a7a;
            line-height: 1.7;
            margin: 0;
        }
        /* Mode tags */
        .cpd-study-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .cpd-study-tag {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(13, 148, 136, 0.08);
            color: var(--cpd-teal);
            border: 1px solid rgba(13, 148, 136, 0.15);
        }
        .feature-place .cpd-study-tag {
            background: rgba(245, 158, 11, 0.08);
            color: #b45309;
            border-color: rgba(245, 158, 11, 0.2);
        }
        .feature-discipline .cpd-study-tag {
            background: rgba(15, 39, 68, 0.06);
            color: var(--cpd-navy);
            border-color: rgba(15, 39, 68, 0.15);
        }
        /* CTAs */
        .cpd-study-ctas {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 50px;
        }
        .cpd-study-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cpd-study-cta.cta-primary {
            background: linear-gradient(135deg, var(--cpd-teal), #0f766e);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
        }
        .cpd-study-cta.cta-primary:hover {
            background: linear-gradient(135deg, #0f766e, var(--cpd-teal));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
            color: #ffffff;
        }
        .cpd-study-cta.cta-secondary {
            background: #ffffff;
            color: var(--cpd-navy);
            border: 2px solid var(--cpd-navy);
        }
        .cpd-study-cta.cta-secondary:hover {
            background: var(--cpd-navy);
            color: #ffffff;
        }
        .cpd-study-cta.cta-text {
            background: transparent;
            color: var(--cpd-gold);
            padding: 16px 20px;
        }
        .cpd-study-cta.cta-text:hover {
            color: #b45309;
        }
        .cpd-study-cta svg {
            width: 18px;
            height: 18px;
        }
        /* Closing line */
        .cpd-study-closing {
            text-align: center;
        }
        .cpd-study-closing p {
            display: inline-block;
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 500;
            color: var(--cpd-navy);
            padding: 16px 32px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
            border-left: 4px solid var(--cpd-gold);
            border-radius: 0 12px 12px 0;
        }
        .cpd-study-closing p em {
            color: var(--cpd-teal);
            font-style: normal;
            font-weight: 700;
        }
        /* Section 5 Responsive */
        @media (max-width: 900px) {
            .cpd-study-features {
                grid-template-columns: 1fr;
                border-radius: 20px;
            }
            .cpd-study-feature {
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            }
            .cpd-study-feature:last-child {
                border-bottom: none;
            }
        }
        @media (max-width: 600px) {
            .cpd-study {
                padding: 60px 20px;
            }
            .cpd-study-feature {
                padding: 32px 24px;
            }
            .cpd-study-ctas {
                flex-direction: column;
                align-items: stretch;
            }
            .cpd-study-cta {
                justify-content: center;
            }
            .cpd-study-closing p {
                font-size: 16px;
                padding: 14px 20px;
            }
        }

        /* ========================================
           FINAL CTA SECTION
           ======================================== */
        .cpd-cta-section {
            padding: 80px 60px;
            /* background: linear-gradient(135deg, var(--cpd-teal) 0%, var(--cpd-teal-light) 100%); */
            background: linear-gradient(135deg, var(--cpd-teal), #0f766e);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cpd-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cpd-cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .cpd-cta-title {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }
        .cpd-cta-desc {
            font-family: var(--font-body);
            font-size: 17px;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .cpd-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cpd-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cpd-cta-btn-primary {
            background: #ffffff;
            color: var(--cpd-teal);
        }
        .cpd-cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--cpd-navy);
        }
        .cpd-cta-btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255,255,255,0.4);
        }
        .cpd-cta-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: #ffffff;
            color: #ffffff;
        }
        .cpd-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 768px) {
            .cpd-cta-section { padding: 60px 30px; }
            .cpd-cta-title { font-size: 28px; }
            .cpd-cta-buttons { flex-direction: column; }
            .cpd-cta-btn { justify-content: center; }
        }
