        /* ========================================
           PROFESSIONAL FELLOWSHIPS - Color Palette
           Prestigious, Academic, Achievement-Focused
           ======================================== */
        :root {
            --pf-deep: #0f1a2e;
            --pf-navy: #1a365d;
            --pf-navy-light: #2b4c7e;
            --pf-teal: #0d9488;
            --pf-teal-light: #14b8a6;
            --pf-gold: #d4a012;
            --pf-gold-light: #eab308;
            --pf-cream: #faf9f7;
            --pf-warm-sand: #f5f3ef;
            --pf-text: #1e293b;
            --pf-text-light: #64748b;
            --pf-gradient: linear-gradient(135deg, #1a365d 0%, #2b4c7e 100%);
            --pf-gradient-teal: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            --pf-gradient-gold: linear-gradient(135deg, #d4a012 0%, #eab308 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - Professional Fellowships
           ======================================== */
        .pf-hero {
            position: relative;
            min-height: 620px;
            background: linear-gradient(165deg, var(--pf-deep) 0%, var(--pf-navy) 40%, var(--pf-navy-light) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
        }
        .pf-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(212, 160, 18, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 160, 18, 0.02) 1px, transparent 1px);
            background-size: 70px 70px;
            pointer-events: none;
        }
        .pf-hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(140px);
            pointer-events: none;
        }
        .pf-hero-glow-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -100px;
            background: rgba(13, 148, 136, 0.12);
        }
        .pf-hero-glow-2 {
            width: 450px;
            height: 450px;
            bottom: -80px;
            left: -80px;
            background: rgba(212, 160, 18, 0.1);
        }
        .pf-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
        }
        .pf-hero-content { color: #ffffff; }
        .pf-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(13, 148, 136, 0.15);
            border: 1px solid rgba(13, 148, 136, 0.35);
            padding: 12px 24px;
            border-radius: 6px;
            margin-bottom: 32px;
        }
        .pf-hero-badge-icon {
            width: 36px;
            height: 36px;
            background: var(--pf-gradient-teal);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pf-hero-badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: #ffffff;
        }
        .pf-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.9);
        }
        .pf-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(38px, 4.2vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }
        .pf-hero-title .accent {
            color: var(--pf-teal-light);
        }
        .pf-hero-subtitle {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 400;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 16px;
        }
        .pf-hero-desc {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 520px;
            margin-bottom: 32px;
        }
        .pf-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .pf-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pf-hero-btn-primary {
            background: var(--pf-gradient-teal);
            color: #ffffff;
            border: none;
        }
        .pf-hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
            color: #ffffff;
        }
        .pf-hero-btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .pf-hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff;
        }
        .pf-hero-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Hero Cards */
        .pf-hero-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .pf-hero-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 22px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .pf-hero-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(13, 148, 136, 0.4);
            transform: translateY(-3px);
        }
        .pf-hero-card-icon {
            width: 44px;
            height: 44px;
            background: var(--pf-gradient-teal);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }
        .pf-hero-card-icon svg {
            width: 22px;
            height: 22px;
            stroke: #ffffff;
        }
        .pf-hero-card h4 {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }
        .pf-hero-card p {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .pf-hero-container { grid-template-columns: 1fr; gap: 50px; }
            .pf-hero-cards { max-width: 500px; }
        }
        @media (max-width: 768px) {
            .pf-hero { padding: 120px 30px 70px; min-height: auto; }
            .pf-hero-cards { grid-template-columns: 1fr; }
            .pf-hero-ctas { flex-direction: column; }
            .pf-hero-btn { justify-content: center; }
        }

        /* ========================================
           STATS BAR
           ======================================== */
        .pf-stats-bar {
            background: var(--pf-cream);
            padding: 50px 60px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .pf-stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        .pf-stat-item {
            text-align: center;
        }
        .pf-stat-number {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pf-navy);
            line-height: 1;
            margin-bottom: 8px;
        }
        .pf-stat-number span {
            color: var(--pf-teal);
        }
        .pf-stat-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pf-text-light);
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .pf-stats-bar { padding: 40px 30px; }
            .pf-stats-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .pf-stat-number { font-size: 32px; }
        }

        /* ========================================
           WHAT IS A FELLOWSHIP SECTION
           ======================================== */
        .pf-what-section {
            padding: 70px 60px;
            background: #ffffff;
        }
        .pf-what-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .pf-what-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 148, 136, 0.1);
            color: var(--pf-teal);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .pf-what-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--pf-navy);
            margin-bottom: 10px;
            line-height: 1.25;
        }
        .pf-what-subtitle {
            font-family: var(--font-heading);
            font-size: 17px;
            color: var(--pf-teal);
            font-weight: 500;
            margin-bottom: 20px;
        }
        .pf-what-intro {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pf-text-light);
            line-height: 1.7;
            margin-bottom: 25px;
        }
        .pf-what-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .pf-what-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px 14px;
            background: var(--pf-cream);
            border-radius: 10px;
            border-left: 3px solid var(--pf-teal);
            transition: all 0.3s ease;
        }
        .pf-what-feature:hover {
            transform: translateX(5px);
            background: rgba(13, 148, 136, 0.08);
        }
        .pf-what-feature-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: var(--pf-gradient-teal);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pf-what-feature-icon svg {
            width: 18px;
            height: 18px;
            stroke: #ffffff;
        }
        .pf-what-feature-content h5 {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: var(--pf-navy);
            margin-bottom: 3px;
        }
        .pf-what-feature-content p {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pf-text-light);
            line-height: 1.5;
            margin: 0;
        }
        .pf-what-visual {
            position: relative;
        }
        .pf-what-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--pf-navy) 0%, var(--pf-navy-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .pf-what-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pf-what-float-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #ffffff;
            border-radius: 12px;
            padding: 18px 28px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            text-align: center;
        }
        .pf-what-float-stat {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--pf-teal);
            line-height: 1;
        }
        .pf-what-float-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: var(--pf-text-light);
            margin-top: 4px;
        }
        @media (max-width: 992px) {
            .pf-what-container { grid-template-columns: 1fr; }
            .pf-what-visual { order: -1; }
            .pf-what-image { height: 300px; }
            .pf-what-float-card { right: 20px; bottom: -15px; }
        }
        @media (max-width: 768px) {
            .pf-what-section { padding: 50px 30px; }
        }

        /* ========================================
           FELLOWSHIP CATEGORIES SECTION
           ======================================== */
        .pf-categories-section {
            padding: 80px 60px;
            background: var(--pf-warm-sand);
        }
        .pf-categories-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .pf-section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .pf-section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 54, 93, 0.1);
            color: var(--pf-navy);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .pf-section-title {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--pf-navy);
            margin-bottom: 12px;
        }
        .pf-section-subtitle {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--pf-text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .pf-categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .pf-category-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 24px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .pf-category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--pf-gradient-teal);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .pf-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .pf-category-card:hover::before {
            transform: scaleX(1);
        }
        .pf-category-level {
            display: inline-block;
            background: var(--pf-cream);
            color: var(--pf-text-light);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .pf-category-abbr {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--pf-teal);
            margin-bottom: 8px;
        }
        .pf-category-name {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--pf-navy);
            margin-bottom: 12px;
        }
        .pf-category-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pf-text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .pf-category-for {
            font-family: var(--font-body);
            font-size: 12px;
            color: var(--pf-navy);
            font-weight: 600;
            padding-top: 16px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }
        @media (max-width: 1100px) {
            .pf-categories-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .pf-categories-section { padding: 60px 30px; }
            .pf-categories-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           BENEFITS SECTION
           ======================================== */
        .pf-benefits-section {
            padding: 80px 60px;
            background: #ffffff;
        }
        .pf-benefits-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .pf-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .pf-benefit-card {
            background: var(--pf-cream);
            border-radius: 14px;
            padding: 28px;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .pf-benefit-card:hover {
            background: #ffffff;
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }
        .pf-benefit-icon {
            width: 52px;
            height: 52px;
            background: var(--pf-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .pf-benefit-icon svg {
            width: 26px;
            height: 26px;
            stroke: #ffffff;
        }
        .pf-benefit-card h4 {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 600;
            color: var(--pf-navy);
            margin-bottom: 10px;
        }
        .pf-benefit-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pf-text-light);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 992px) {
            .pf-benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .pf-benefits-section { padding: 60px 30px; }
            .pf-benefits-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           PATHWAY SECTION
           ======================================== */
        .pf-pathway-section {
            padding: 80px 60px;
            background: linear-gradient(165deg, var(--pf-navy) 0%, var(--pf-navy-light) 100%);
            position: relative;
            overflow: hidden;
        }
        .pf-pathway-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;
        }
        .pf-pathway-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .pf-pathway-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .pf-pathway-header .pf-section-tag {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.9);
        }
        .pf-pathway-header .pf-section-title {
            color: #ffffff;
        }
        .pf-pathway-header .pf-section-subtitle {
            color: rgba(255,255,255,0.7);
        }
        .pf-pathway-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }
        .pf-pathway-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12%;
            right: 12%;
            height: 3px;
            background: linear-gradient(90deg, var(--pf-teal), var(--pf-gold));
            border-radius: 2px;
        }
        .pf-pathway-step {
            text-align: center;
            position: relative;
        }
        .pf-pathway-step-number {
            width: 60px;
            height: 60px;
            background: var(--pf-gradient-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            position: relative;
            z-index: 5;
            box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
        }
        .pf-pathway-step h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .pf-pathway-step p {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
        }
        @media (max-width: 900px) {
            .pf-pathway-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .pf-pathway-steps::before { display: none; }
        }
        @media (max-width: 600px) {
            .pf-pathway-section { padding: 60px 30px; }
            .pf-pathway-steps { grid-template-columns: 1fr; }
        }

        /* ========================================
           SUPPORT SECTION
           ======================================== */
        .pf-support-section {
            padding: 80px 60px;
            background: var(--pf-cream);
        }
        .pf-support-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .pf-support-content .pf-what-tag {
            background: rgba(212, 160, 18, 0.15);
            color: var(--pf-gold);
        }
        .pf-support-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 25px;
        }
        .pf-support-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .pf-support-feature:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transform: translateX(5px);
        }
        .pf-support-feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--pf-gradient-gold);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pf-support-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #ffffff;
        }
        .pf-support-feature h5 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--pf-navy);
            margin-bottom: 5px;
        }
        .pf-support-feature p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pf-text-light);
            line-height: 1.5;
            margin: 0;
        }
        .pf-support-visual {
            position: relative;
        }
        .pf-support-image {
            width: 100%;
            height: 420px;
            background: linear-gradient(135deg, var(--pf-teal) 0%, var(--pf-navy) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .pf-support-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pf-support-float {
            position: absolute;
            bottom: -25px;
            left: -25px;
            background: #ffffff;
            border-radius: 14px;
            padding: 22px 30px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .pf-support-float-icon {
            width: 50px;
            height: 50px;
            background: var(--pf-gradient-teal);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pf-support-float-icon svg {
            width: 26px;
            height: 26px;
            stroke: #ffffff;
        }
        .pf-support-float-text h5 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pf-navy);
            margin-bottom: 2px;
        }
        .pf-support-float-text span {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--pf-text-light);
        }
        @media (max-width: 992px) {
            .pf-support-container { grid-template-columns: 1fr; }
            .pf-support-visual { order: -1; }
            .pf-support-image { height: 320px; }
            .pf-support-float { left: 20px; bottom: -20px; }
        }
        @media (max-width: 768px) {
            .pf-support-section { padding: 60px 30px; }
        }

        /* ========================================
           FINAL CTA SECTION
           ======================================== */
        .pf-cta-section {
            padding: 70px 60px;
            background: linear-gradient(135deg, var(--pf-cream) 0%, #ffffff 100%);
            text-align: center;
        }
        .pf-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .pf-cta-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--pf-navy);
            margin-bottom: 14px;
        }
        .pf-cta-subtitle {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--pf-text-light);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .pf-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .pf-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pf-cta-btn-primary {
            background: var(--pf-gradient);
            color: #ffffff;
        }
        .pf-cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
            color: #ffffff;
        }
        .pf-cta-btn-secondary {
            background: transparent;
            color: var(--pf-navy);
            border: 2px solid var(--pf-navy);
        }
        .pf-cta-btn-secondary:hover {
            background: var(--pf-navy);
            color: #ffffff;
        }
        .pf-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 600px) {
            .pf-cta-section { padding: 50px 30px; }
            .pf-cta-buttons { flex-direction: column; }
            .pf-cta-btn { justify-content: center; }
        }