        /* ========================================
           PROFESSIONAL DOCTORATE - Color Palette
           Scholarly, Warm, Practice-Focused
           ======================================== */
        :root {
            --pd-deep: #0a1628;
            --pd-navy: #1e3a5f;
            --pd-navy-light: #2c5282;
            --pd-slate: #1e3a5c;
            --pd-gold: #c9a227;
            --pd-gold-light: #d4b545;
            --pd-cream: #f9f7f4;
            --pd-warm-sand: #f5f0e8;
            --pd-text: #2d3748;
            --pd-text-light: #718096;
            --pd-gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            --pd-gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - Professional Doctorate
           ======================================== */
        .pd-hero {
            position: relative;
            min-height: 680px;
            background: linear-gradient(165deg, var(--pd-deep) 0%, var(--pd-navy) 35%, var(--pd-slate) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
        }
        .pd-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(201, 162, 39, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 162, 39, 0.025) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        .pd-hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(140px);
            pointer-events: none;
        }
        .pd-hero-glow-1 {
            width: 700px;
            height: 700px;
            top: -250px;
            right: -150px;
            background: rgba(30, 58, 95, 0.2);
        }
        .pd-hero-glow-2 {
            width: 500px;
            height: 500px;
            bottom: -100px;
            left: -100px;
            background: rgba(201, 162, 39, 0.08);
        }
        .pd-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }
        .pd-hero-content { color: #ffffff; }
        .pd-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            padding: 12px 24px;
            border-radius: 6px;
            margin-bottom: 36px;
        }
        .pd-hero-badge-icon {
            width: 36px;
            height: 36px;
            background: var(--pd-gradient-gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pd-hero-badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--pd-deep);
        }
        .pd-hero-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.85);
        }
        .pd-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(40px, 4.5vw, 60px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }
        .pd-hero-title .accent {
            color: var(--pd-gold);
        }
        .pd-hero-subtitle {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 16px;
            max-width: 540px;
        }
        .pd-hero-text {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 520px;
        }
        .pd-hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .pd-btn-primary {
            font-family: var(--font-body);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pd-gradient-gold);
            color: #1a1a2e;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
        }
        .pd-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
            color: #1a1a2e;
        }
        .pd-btn-secondary {
            font-family: var(--font-body);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        .pd-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff;
        }
        /* Hero Focus Cards */
        .pd-hero-focus {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .pd-focus-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.4s ease;
        }
        .pd-focus-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateY(-4px);
        }
        .pd-focus-icon {
            width: 48px;
            height: 48px;
            background: var(--pd-gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .pd-focus-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pd-deep);
        }
        .pd-focus-title {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .pd-focus-desc {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.5;
        }

        /* Hero Responsive */
        @media (max-width: 1024px) {
            .pd-hero { padding: 120px 40px 80px; }
            .pd-hero-container { grid-template-columns: 1fr; gap: 50px; }
            .pd-hero-focus { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pd-hero { padding: 100px 24px 60px; min-height: auto; }
            .pd-hero-focus { grid-template-columns: 1fr; }
            .pd-hero-buttons { flex-direction: column; }
            .pd-btn-primary, .pd-btn-secondary { width: 100%; justify-content: center; }
        }

        /* ========================================
           STATS BAR
           ======================================== */
        .pd-stats-bar {
            background: var(--pd-cream);
            padding: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .pd-stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
        }
        .pd-stat-item {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 35px 30px;
            border-right: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .pd-stat-item:last-child { border-right: none; }
        .pd-stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pd-navy);
        }
        .pd-stat-icon svg { width: 24px; height: 24px; }
        .pd-stat-content { text-align: left; }
        .pd-stat-number {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--pd-navy);
            line-height: 1;
            margin-bottom: 4px;
        }
        .pd-stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pd-text-light);
            font-weight: 500;
        }
        @media (max-width: 992px) {
            .pd-stats-container { flex-wrap: wrap; }
            .pd-stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(0,0,0,0.08); }
            .pd-stat-item:nth-child(2) { border-right: none; }
        }
        @media (max-width: 576px) {
            .pd-stat-item { flex: 1 1 100%; border-right: none; }
        }

        /* ========================================
           COMPARISON SECTION
           ======================================== */
        .pd-compare-section {
            padding: 100px 60px;
            background: #ffffff;
        }
        .pd-section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .pd-section-tag {
            display: inline-block;
            background: var(--pd-gold);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 20px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .pd-section-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            color: var(--pd-text);
            margin-bottom: 16px;
            font-weight: 700;
        }
        .pd-section-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--pd-text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .pd-compare-eqf-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(44, 82, 130, 0.08));
            padding: 12px 24px;
            border-radius: 30px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--pd-navy);
            margin-top: 20px;
        }
        .pd-compare-eqf-badge svg { color: var(--pd-gold); }
        .pd-compare-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .pd-compare-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 45px 40px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .pd-compare-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .pd-compare-card.phd::before { background: linear-gradient(90deg, #6b2c3f, #8a3d54); }
        .pd-compare-card.profdoc::before { background: var(--pd-gradient-gold); }
        .pd-compare-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        .pd-compare-card:hover::before { opacity: 1; }
        .pd-compare-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .pd-compare-card.phd .pd-compare-badge {
            background: rgba(107, 44, 63, 0.1);
            color: #6b2c3f;
        }
        .pd-compare-card.profdoc .pd-compare-badge {
            background: rgba(201, 162, 39, 0.15);
            color: #a88a1d;
        }
        .pd-compare-title {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 700;
            color: var(--pd-text);
            margin-bottom: 8px;
        }
        .pd-compare-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text-light);
            margin-bottom: 30px;
        }
        .pd-compare-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pd-compare-features li {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .pd-compare-features li:last-child { border-bottom: none; }
        .pd-compare-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pd-compare-card.phd .pd-compare-icon {
            background: rgba(107, 44, 63, 0.1);
            color: #6b2c3f;
        }
        .pd-compare-card.profdoc .pd-compare-icon {
            background: rgba(201, 162, 39, 0.15);
            color: #a88a1d;
        }
        .pd-compare-feature-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--pd-text-light);
            margin-bottom: 4px;
        }
        .pd-compare-feature-text {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text);
            line-height: 1.5;
        }
        @media (max-width: 992px) {
            .pd-compare-section { padding: 80px 40px; }
            .pd-compare-grid { grid-template-columns: 1fr; gap: 30px; }
        }
        @media (max-width: 576px) {
            .pd-compare-section { padding: 60px 24px; }
            .pd-compare-card { padding: 30px 24px; }
        }

        /* ========================================
           PROGRAMS SECTION
           ======================================== */
        .pd-programs-section {
            padding: 100px 60px;
            background: var(--pd-cream);
        }
        .pd-programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .pd-program-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .pd-program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--pd-gradient-gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .pd-program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--pd-gold);
        }
        .pd-program-card:hover::before { transform: scaleX(1); }
        .pd-program-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--pd-navy);
            transition: all 0.4s ease;
        }
        .pd-program-card:hover .pd-program-icon {
            background: var(--pd-gradient);
            color: #ffffff;
        }
        .pd-program-icon svg { width: 32px; height: 32px; }
        .pd-program-abbr {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--pd-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .pd-program-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pd-text);
            margin-bottom: 12px;
        }
        .pd-program-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text-light);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .pd-program-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        .pd-program-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pd-text-light);
        }
        .pd-program-meta-item svg {
            width: 16px;
            height: 16px;
            color: var(--pd-gold);
        }
        @media (max-width: 768px) {
            .pd-programs-section { padding: 60px 24px; }
            .pd-programs-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           LEARNING FORMATS SECTION
           ======================================== */
        .pd-format-section {
            padding: 100px 60px;
            background: #ffffff;
        }
        .pd-format-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .pd-format-card {
            padding: 40px 35px;
            background: var(--pd-cream);
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .pd-format-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--pd-gradient-gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .pd-format-card:hover {
            background: #ffffff;
            border-color: var(--pd-gold);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }
        .pd-format-card:hover::before { transform: scaleX(1); }
        .pd-format-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--pd-navy);
            transition: all 0.4s ease;
        }
        .pd-format-card:hover .pd-format-icon {
            background: var(--pd-gradient);
            color: #ffffff;
            transform: scale(1.1);
        }
        .pd-format-icon svg { width: 36px; height: 36px; }
        .pd-format-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pd-text);
            margin-bottom: 15px;
        }
        .pd-format-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text-light);
            line-height: 1.6;
            margin-bottom: 25px;
        }
        .pd-format-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        .pd-format-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pd-text);
            margin-bottom: 12px;
        }
        .pd-format-features li svg {
            width: 16px;
            height: 16px;
            color: var(--pd-gold);
            flex-shrink: 0;
            margin-top: 2px;
        }
        @media (max-width: 768px) {
            .pd-format-section { padding: 60px 24px; }
            .pd-format-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           WHAT IS A PROFESSIONAL DOCTORATE SECTION
           ======================================== */
        .pd-what-section {
            padding: 70px 60px;
            /* background: #ffffff; */
            background: var(--er-warm-white);
        }
        .pd-what-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }
        .pd-what-subtitle {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 600;
            color: var(--pd-gold);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .pd-what-intro {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        .pd-what-intro strong {
            color: var(--pd-navy);
            font-weight: 700;
        }
        .pd-what-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .pd-what-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: rgba(30, 58, 95, 0.05);
            border-radius: 10px;
            border-left: 3px solid var(--pd-gold);
            transition: all 0.3s ease;
        }
        .pd-what-feature:hover {
            background: rgba(30, 58, 95, 0.08);
            transform: translateX(4px);
        }
        .pd-what-feature-icon {
            width: 36px;
            height: 36px;
            background: var(--pd-gradient);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
        }
        .pd-what-feature-icon svg { width: 18px; height: 18px; }
        .pd-what-feature-text {
            flex: 1;
        }
        .pd-what-feature-title {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--pd-navy);
            margin-bottom: 2px;
        }
        .pd-what-feature-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pd-text-light);
            line-height: 1.5;
        }
        .pd-what-image-wrapper {
            position: relative;
        }
        .pd-what-image-wrapper img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        .pd-what-floating-card {
            position: absolute;
            bottom: 20px;
            right: -20px;
            background: var(--pd-gradient);
            padding: 18px 28px;
            border-radius: 12px;
            box-shadow: 0 12px 30px rgba(30, 58, 95, 0.25);
        }
        .pd-what-floating-stat .number {
            display: block;
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
        }
        .pd-what-floating-stat .label {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
        }
        @media (max-width: 992px) {
            .pd-what-grid { grid-template-columns: 1fr; gap: 40px; }
            .pd-what-floating-card { right: 15px; }
        }
        @media (max-width: 768px) {
            .pd-what-section { padding: 50px 24px; }
            .pd-what-floating-card { position: static; margin-top: 15px; text-align: center; }
        }

        /* ========================================
           SUPPORT SECTION
           ======================================== */
        .pd-support-section {
            padding: 100px 60px;
            background: var(--pd-cream);
        }
        .pd-support-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .pd-support-text {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--pd-text-light);
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .pd-support-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .pd-feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .pd-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--pd-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            flex-shrink: 0;
        }
        .pd-feature-icon svg { width: 24px; height: 24px; }
        .pd-feature-text h4 {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--pd-text);
            margin-bottom: 6px;
        }
        .pd-feature-text p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pd-text-light);
            line-height: 1.6;
            margin: 0;
        }
        .pd-support-image-wrapper {
            position: relative;
        }
        .pd-support-image-wrapper img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        .pd-support-floating-card {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--pd-gradient-gold);
            padding: 25px 35px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
        }
        .pd-floating-stat .number {
            display: block;
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
        }
        .pd-floating-stat .label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        @media (max-width: 992px) {
            .pd-support-section { padding: 80px 40px; }
            .pd-support-grid { grid-template-columns: 1fr; gap: 50px; }
            .pd-support-floating-card { left: 20px; bottom: 20px; }
        }
        @media (max-width: 576px) {
            .pd-support-section { padding: 60px 24px; }
        }

        /* ========================================
           STATS STRIP
           ======================================== */
        .pd-support-stats {
            background: linear-gradient(135deg, var(--pd-navy) 0%, var(--pd-slate) 100%);
            padding: 50px 60px;
            position: relative;
            overflow: hidden;
        }
        .pd-support-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;
        }
        .pd-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .pd-stats-item {
            text-align: center;
            padding: 0 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        .pd-stats-item:last-child { border-right: none; }
        .pd-stats-value {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-gold);
            line-height: 1;
            margin-bottom: 8px;
        }
        .pd-stats-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        @media (max-width: 992px) {
            .pd-support-stats { padding: 40px 30px; }
            .pd-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .pd-stats-item { border-right: none; padding: 20px 0; }
        }
        @media (max-width: 576px) {
            .pd-stats-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .pd-cta {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(201, 162, 39, 0.08) 100%);
            padding: 60px;
            border-radius: 20px;
            text-align: center;
            max-width: 1000px;
            margin: 60px auto;
        }
        .pd-cta-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--pd-text);
            margin-bottom: 16px;
        }
        .pd-cta-text {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--pd-text-light);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .pd-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .pd-cta .pd-btn-primary {
            background: var(--pd-gradient);
            color: #ffffff;
        }
        .pd-cta .pd-btn-secondary {
            background: transparent;
            color: var(--pd-navy);
            border: 2px solid var(--pd-navy);
        }
        .pd-cta .pd-btn-secondary:hover {
            background: var(--pd-navy);
            color: #ffffff;
        }
        @media (max-width: 768px) {
            .pd-cta { padding: 40px 24px; margin: 40px 24px; }
            .pd-cta-buttons { flex-direction: column; }
            .pd-cta .pd-btn-primary, .pd-cta .pd-btn-secondary { width: 100%; justify-content: center; }
        }

        /* ========================================
           PROGRAMS CTA - Single Button Style
           ======================================== */
        .pd-programs-cta {
            text-align: center;
            padding: 60px 40px;
            /* background: linear-gradient(135deg, rgba(249, 247, 244, 0.95), rgba(240, 235, 225, 0.9)); */
            border-radius: 24px;
            max-width: 800px;
            margin: 60px auto 0;
        }
        .pd-programs-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--pd-gradient);
            color: #ffffff;
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
        }
        .pd-programs-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(30, 58, 95, 0.4);
            background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
            color: #ffffff;
        }
        .pd-programs-cta-btn svg {
            transition: transform 0.3s ease;
        }
        .pd-programs-cta-btn:hover svg {
            transform: translateX(4px);
        }
        .pd-programs-cta-text {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-text-light);
            margin-top: 20px;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .pd-programs-cta { padding: 40px 24px; margin: 40px 16px 0; }
            .pd-programs-cta-btn { padding: 16px 30px; font-size: 15px; }
        }
