        /* ========================================
           CSS VARIABLES - Original Study Options Design
           ======================================== */
        :root {
            --pd-primary: #1e3a5f;
            --pd-primary-light: #2c5282;
            --pd-accent: #c9a227;
            --pd-accent-light: #d4b545;
            --pd-gradient: linear-gradient(155deg, var(--er-deep) 0%, var(--er-navy) 40%, var(--er-teal) 100%);
            --pd-gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
            --pd-glass: rgba(255, 255, 255, 0.1);
            --pd-glass-border: rgba(255, 255, 255, 0.2);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - Original Design
           ======================================== */
        .pd-hero {
            position: relative;
            min-height: 550px;
            display: flex;
            align-items: center;
            padding: 140px 40px 80px;
            overflow: hidden;
            background: var(--pd-gradient);
        }
        .pd-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .pd-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .pd-hero-content {
            color: #ffffff;
        }
        .pd-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pd-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--pd-glass-border);
            padding: 12px 24px;
            border-radius: 30px;
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease;
        }
        .pd-hero-badge .badge-icon {
            width: 24px;
            height: 24px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pd-hero-badge .badge-icon svg {
            width: 12px;
            height: 12px;
            stroke: #1a1a2e;
        }
        .pd-hero-badge span {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--pd-accent-light);
        }
        .pd-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(42px, 5vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease 0.1s both;
            color: #ffffff;
        }
        .pd-hero-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pd-hero-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            max-width: 540px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }
        .pd-hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s both;
        }
        .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(255, 183, 3, 0.35);
        }
        .pd-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 183, 3, 0.5);
            color: #1a1a2e;
        }
        .pd-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .pd-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .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;
        }
        .pd-btn-secondary svg {
            width: 18px;
            height: 18px;
        }

        /* Hero Highlights */
        .study-options-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 35px;
            animation: fadeInUp 0.6s ease 0.25s both;
        }
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.06);
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        .highlight-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateX(4px);
        }
        .highlight-item svg {
            width: 20px;
            height: 20px;
            color: var(--pd-accent-light);
            flex-shrink: 0;
        }
        .highlight-item span {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
        }

        /* Hero Image Section */
        .pd-hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease 0.4s both;
        }
        .pd-hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }
        .pd-hero-image-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        .pd-hero-floating-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: #ffffff;
            padding: 25px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            animation: float 3s ease-in-out infinite;
        }
        .pd-hero-floating-card .stat-number {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 800;
            color: var(--pd-primary);
            line-height: 1;
            margin-bottom: 5px;
        }
        .pd-hero-floating-card .stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Hero Responsive */
        @media (max-width: 1024px) {
            .pd-hero {
                padding: 120px 40px 80px;
                min-height: auto;
            }
            .pd-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .pd-hero-image {
                order: -1;
            }
            .study-options-highlights {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .pd-hero {
                padding: 100px 30px 60px;
                min-height: auto;
            }
            .pd-hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .pd-hero-title {
                font-size: 36px;
            }
            .pd-hero-buttons {
                flex-direction: column;
            }
            .pd-btn-primary,
            .pd-btn-secondary {
                justify-content: center;
                width: 100%;
            }
            .highlight-item {
                padding: 12px 16px;
            }
            .highlight-item span {
                font-size: 13px;
            }
            .pd-hero-floating-card {
                position: static;
                margin-top: 20px;
                animation: none;
            }
            .pd-hero-image-wrapper img {
                height: 300px;
            }
        }

        /* ========================================
           STUDY MODES SECTION - Original Design
           ======================================== */
        .study-modes-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }
        .study-modes-header {
            text-align: center;
            max-width: 710px;
            margin: 0 auto 70px;
        }
        .study-modes-header h2 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
        }
        .study-modes-header p {
            font-family: var(--font-body);
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
        }

        /* Parity Banner - Original */
        .modes-parity-banner {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            border-radius: 20px;
            padding: 28px 36px;
            margin: 0 auto 50px;
            max-width: 1300px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            overflow: hidden;
        }
        .modes-parity-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -5%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .modes-parity-main {
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            z-index: 1;
        }
        .modes-parity-icon {
            width: 52px;
            height: 52px;
            background: rgba(201, 162, 39, 0.2);
            border: 2px solid var(--pd-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .modes-parity-icon svg {
            width: 24px;
            height: 24px;
            color: var(--pd-accent);
        }
        .modes-parity-text h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }
        .modes-parity-text p {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            line-height: 1.5;
        }
        .modes-parity-badges {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        .modes-parity-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        .modes-parity-badge svg {
            width: 18px;
            height: 18px;
            color: var(--pd-accent);
            flex-shrink: 0;
        }
        .modes-parity-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            white-space: nowrap;
        }

        /* Study Modes Grid */
        .study-modes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* Study Mode Card - Original with animated orbs */
        .study-mode-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 36px 32px;
            position: relative;
            border: 1px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .study-mode-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, rgba(30, 58, 95, 0) 60%);
            border-radius: 50%;
            animation: pulseOrb 5s ease-in-out infinite;
            z-index: 0;
        }
        .study-mode-card::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.05) 0%, rgba(30, 58, 95, 0) 60%);
            border-radius: 50%;
            animation: pulseOrb 6s ease-in-out infinite reverse;
            z-index: 0;
        }
        @keyframes pulseOrb {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }
        .study-mode-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(30, 58, 95, 0.15);
            border-color: var(--pd-accent);
        }
        .study-mode-card:hover::before {
            animation: pulseOrbHover 2.5s ease-in-out infinite;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0) 60%);
        }
        .study-mode-card:hover::after {
            animation: pulseOrbHover 3s ease-in-out infinite reverse;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0) 60%);
        }
        @keyframes pulseOrbHover {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.3); opacity: 1; }
        }
        .study-mode-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(44, 82, 130, 0.12) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            animation: floatIcon 3s ease-in-out infinite;
        }
        @keyframes floatIcon {
			0%, 100% {
				transform: translateY(0);
			}
			50% {
				transform: translateY(-6px);
			}
		}
        .study-mode-card:hover .study-mode-icon {
            background: var(--pd-gradient-gold);
        }
        .study-mode-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--pd-primary);
            transition: stroke 0.3s ease;
        }
        .study-mode-card:hover .study-mode-icon svg {
            stroke: #1a1a2e;
        }
        .study-mode-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .study-mode-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Reassurance Note */
        .study-modes-note {
            max-width: 800px;
            margin: 60px auto 0;
            padding: 24px 36px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.04) 0%, rgba(201, 162, 39, 0.06) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid rgba(201, 162, 39, 0.2);
        }
        .study-modes-note-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .study-modes-note-icon svg {
            width: 24px;
            height: 24px;
            color: #1a1a2e;
        }
        .study-modes-note p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--pd-primary);
            font-weight: 500;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive - Study Modes & Parity */
        @media (max-width: 1024px) {
            .study-modes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .modes-parity-banner {
                flex-direction: column;
                text-align: center;
                padding: 24px;
            }
            .modes-parity-main {
                flex-direction: column;
            }
            .modes-parity-badges {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .study-modes-section {
                padding: 70px 20px;
            }
            .study-modes-header h2 {
                font-size: 32px;
            }
            .study-modes-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .study-mode-card {
                padding: 28px 24px;
            }
            .study-modes-note {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }
        }

        /* ========================================
           SECTION 2: WHERE YOU CAN STUDY FROM
           Premium Bento Grid Layout
           ======================================== */
        .study-locations-section {
            padding: 120px 60px;
            background: var(--pd-primary);
            position: relative;
            overflow: hidden;
        }
        .study-locations-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }
        /* Subtle gold glow accent */
        .study-locations-section::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .study-locations-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .study-locations-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 70px;
            gap: 40px;
        }
        .study-locations-header-left h2 {
            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.1;
        }
        .study-locations-header-left h2 span {
            color: var(--pd-accent);
        }
        .study-locations-header-right {
            max-width: 380px;
        }
        .study-locations-header-right p {
            font-family: var(--font-body);
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin: 0;
        }

        /* Bento Grid */
        .study-locations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .study-location-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        .study-location-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateY(-6px);
        }
        /* Featured card - full width */
        .study-location-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
            padding: 50px 60px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(255,255,255,0.03) 100%);
            border-color: rgba(201, 162, 39, 0.2);
        }
        .study-location-card.featured:hover {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(255,255,255,0.06) 100%);
        }
        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: var(--pd-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .location-badge svg {
            width: 14px;
            height: 14px;
        }
        .location-number {
            position: absolute;
            top: 30px;
            right: 40px;
            font-family: var(--font-heading);
            font-size: 72px;
            font-weight: 800;
            color: rgba(255,255,255,0.04);
            line-height: 1;
        }
        .study-location-card.featured .location-number {
            font-size: 120px;
            top: 40px;
            right: 60px;
        }
        .location-title {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            position: relative;
        }
        .study-location-card.featured .location-title {
            font-size: 32px;
        }
        .location-desc {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255,255,255,0.65);
            line-height: 1.8;
            margin: 0;
        }
        /* Featured card visual */
        .location-visual {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, var(--pd-primary-light) 0%, var(--pd-primary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .location-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(201, 162, 39, 0.2) 1px, transparent 1px);
            background-size: 20px 20px;
        }
        .location-visual-icon {
            width: 80px;
            height: 80px;
            background: var(--pd-gradient-gold);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            animation: floatIcon 4s ease-in-out infinite;
        }
        .location-visual-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--pd-primary);
        }

        /* Locations Parity Banner */
        .locations-parity-banner {
            margin-top: 60px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(255,255,255,0.05) 100%);
            border: 1px solid rgba(201, 162, 39, 0.25);
            border-radius: 20px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .locations-parity-main {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .locations-parity-icon {
            width: 56px;
            height: 56px;
            background: var(--pd-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .locations-parity-icon svg {
            width: 26px;
            height: 26px;
            stroke: #1a1a2e;
        }
        .locations-parity-text h4 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
        }
        .locations-parity-text p {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            margin: 0;
            line-height: 1.5;
        }
        .locations-parity-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
        }
        .locations-parity-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
        }
        .locations-parity-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--pd-accent);
            flex-shrink: 0;
        }
        .locations-parity-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            white-space: nowrap;
        }

        /* Responsive - Locations Section */
        @media (max-width: 1024px) {
            .study-locations-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .study-locations-header-right {
                max-width: 100%;
            }
            .study-location-card.featured {
                grid-template-columns: 1fr;
                padding: 40px;
            }
            .location-visual {
                height: 160px;
            }
        }
        @media (max-width: 900px) {
            .locations-parity-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }
            .locations-parity-main {
                flex-direction: column;
            }
            .locations-parity-badges {
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .study-locations-section {
                padding: 80px 20px;
            }
            .study-locations-header-left h2 {
                font-size: 34px;
            }
            .study-locations-grid {
                grid-template-columns: 1fr;
            }
            .study-location-card {
                padding: 30px 24px;
            }
            .location-number {
                font-size: 48px;
                top: 20px;
                right: 24px;
            }
            .study-location-card.featured .location-number {
                font-size: 64px;
            }
        }

        /* ========================================
           SECTION 3: CHOOSE YOUR PACE
           Box Grid Layout (Redesigned)
           ======================================== */
        .study-pace-section {
            padding: 120px 60px;
            background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
            position: relative;
        }
        .study-pace-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .study-pace-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 50px;
        }
        .study-pace-header h2 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .study-pace-header p {
            font-family: var(--font-body);
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
        }

        /* Parity Banner */
        .pace-parity-banner {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            border-radius: 20px;
            padding: 32px 40px;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            position: relative;
            overflow: hidden;
        }
        .pace-parity-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .pace-parity-main {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        .pace-parity-icon {
            width: 60px;
            height: 60px;
            background: rgba(201, 162, 39, 0.2);
            border: 2px solid var(--pd-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pace-parity-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--pd-accent);
        }
        .pace-parity-text h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
        }
        .pace-parity-text p {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            line-height: 1.5;
        }
        .pace-parity-badges {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        .parity-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            min-width: 100px;
        }
        .parity-badge svg {
            width: 20px;
            height: 20px;
            stroke: var(--pd-accent);
        }
        .parity-badge span {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }

        /* REDESIGNED: Pace Cards - Box Grid Layout */
        .study-pace-stack {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .pace-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 24px;
            padding: 36px;
            border: 1px solid #e8e4de;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .pace-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            height: 5px;
            background: var(--pd-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .pace-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(30, 58, 95, 0.12);
            border-color: transparent;
        }
        .pace-card:hover::before {
            opacity: 1;
        }

        /* Card Header */
        .pace-card-left {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }
        .pace-indicator {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pace-indicator svg {
            width: 28px;
            height: 28px;
        }
        .pace-card[data-pace="full"] .pace-indicator {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
        }
        .pace-card[data-pace="full"] .pace-indicator svg { stroke: #ffffff; }
        .pace-card[data-pace="part"] .pace-indicator {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        }
        .pace-card[data-pace="part"] .pace-indicator svg { stroke: #ffffff; }
        .pace-card[data-pace="accel"] .pace-indicator {
            background: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
        }
        .pace-card[data-pace="accel"] .pace-indicator svg { stroke: #1a1a2e; }
        .pace-card[data-pace="flex"] .pace-indicator {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }
        .pace-card[data-pace="flex"] .pace-indicator svg { stroke: #ffffff; }

        .pace-title-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .pace-title-group h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0;
            line-height: 1.3;
        }
        .pace-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
        }
        .pace-tag.popular {
            background: rgba(30, 58, 95, 0.1);
            color: var(--pd-primary);
        }
        .pace-tag.fastest {
            background: rgba(201, 162, 39, 0.15);
            color: #a68a1d;
        }
        .pace-tag.flexible {
            background: rgba(124, 58, 237, 0.1);
            color: #7c3aed;
        }

        /* Card Body */
        .pace-card-middle {
            flex: 1;
            margin-bottom: 24px;
        }
        .pace-card-middle p {
            font-family: var(--font-body);
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

        /* Card Footer - Meter */
        .pace-card-right {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid #f0ece6;
        }
        .pace-meter {
            display: flex;
            gap: 4px;
        }
        .pace-meter-bar {
            width: 24px;
            height: 8px;
            border-radius: 4px;
            background: #e8e4de;
            transition: all 0.3s ease;
        }
        .pace-meter-bar.active {
            background: var(--pd-primary);
        }
        .pace-card[data-pace="part"] .pace-meter-bar.active {
            background: #10b981;
        }
        .pace-card[data-pace="accel"] .pace-meter-bar.active {
            background: var(--pd-accent);
        }
        .pace-card[data-pace="flex"] .pace-meter-bar.active {
            background: #7c3aed;
        }
        .pace-meter-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        /* Footer note */
        .study-pace-footer {
            margin-top: 50px;
            text-align: center;
        }
        .study-pace-footer p {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--pd-primary);
            background: #ffffff;
            padding: 16px 28px;
            border-radius: 100px;
            border: 1px solid #e8e4de;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .study-pace-footer svg {
            width: 20px;
            height: 20px;
            fill: var(--pd-accent);
        }

        /* Responsive - Section 3 */
        @media (max-width: 1024px) {
            .study-pace-stack {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 900px) {
            .pace-parity-banner {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }
            .pace-parity-main {
                flex-direction: column;
            }
            .pace-parity-badges {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .study-pace-section {
                padding: 80px 20px;
            }
            .study-pace-header h2 {
                font-size: 32px;
            }
            .pace-card {
                padding: 28px 24px;
            }
            .pace-indicator {
                width: 48px;
                height: 48px;
            }
            .pace-indicator svg {
                width: 24px;
                height: 24px;
            }
            .pace-title-group h3 {
                font-size: 18px;
            }
        }

        /* Placeholder Section Styles */
        .bu-placeholder-section {
            padding: 80px 40px;
            text-align: center;
            border: 2px dashed rgba(0,0,0,0.1);
            margin: 20px 40px;
            border-radius: 16px;
            background: rgba(0,0,0,0.02);
        }
        .bu-placeholder-section h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--pd-primary);
            margin-bottom: 10px;
        }
        .bu-placeholder-section p {
            color: #64748b;
            font-size: 0.95rem;
        }

        /* ========================================
           SECTION 4: SWITCHING MODES
           Redesigned Compact Layout
           ======================================== */
        .switch-modes-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, #f8f6f3 0%, #fff 50%, #f0ebe3 100%);
            position: relative;
            overflow: hidden;
        }
        .switch-modes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .switch-modes-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .switch-modes-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        .switch-modes-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            color: #fff;
            padding: 8px 20px;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }
        .switch-modes-eyebrow svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }
        .switch-modes-header h2 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
            line-height: 1.15;
        }
        .switch-modes-header p {
            font-family: var(--font-body);
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
        }

        /* REDESIGNED: Scenario Cards Grid (replaces timeline) */
        .switch-scenarios {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }
        .switch-scenario-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .switch-scenario-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--pd-primary), var(--pd-accent));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .switch-scenario-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: rgba(201, 162, 39, 0.3);
        }
        .switch-scenario-card:hover::before {
            opacity: 1;
        }
        .switch-scenario-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(201, 162, 39, 0.1) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .switch-scenario-card:hover .switch-scenario-icon {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
        }
        .switch-scenario-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pd-primary);
            transition: stroke 0.3s ease;
        }
        .switch-scenario-card:hover .switch-scenario-icon svg {
            stroke: #ffffff;
        }
        .switch-scenario-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(30, 58, 95, 0.08);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            color: var(--pd-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .switch-scenario-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .switch-scenario-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: #64748b;
            line-height: 1.65;
            margin-bottom: 16px;
        }
        .switch-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--pd-accent);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            color: #1a1a2e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .switch-arrow svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
        }

        /* Offer Cards Row */
        .switch-offers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .switch-offer-card {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }
        .switch-offer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(30, 58, 95, 0.25);
        }
        .switch-offer-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 16px;
            background: rgba(201, 162, 39, 0.2);
            border: 2px solid var(--pd-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .switch-offer-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--pd-accent);
        }
        .switch-offer-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .switch-offer-card p {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            line-height: 1.55;
            margin: 0;
        }

        /* Footer reassurance */
        .switch-footer {
            text-align: center;
        }
        .switch-footer-message {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: #ffffff;
            border: 1px solid rgba(201, 162, 39, 0.3);
            padding: 18px 32px;
            border-radius: 100px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        .switch-footer-icon {
            width: 44px;
            height: 44px;
            background: var(--pd-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .switch-footer-icon svg {
            width: 20px;
            height: 20px;
            stroke: #1a1a2e;
        }
        .switch-footer-message p {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
            color: var(--pd-primary);
            margin: 0;
            text-align: left;
        }

        /* Responsive - Section 4 */
        @media (max-width: 1024px) {
            .switch-scenarios {
                grid-template-columns: 1fr;
            }
            .switch-offers {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .switch-modes-section {
                padding: 80px 20px;
            }
            .switch-modes-header h2 {
                font-size: 32px;
            }
            .switch-footer-message {
                flex-direction: column;
                text-align: center;
                padding: 20px;
                border-radius: 16px;
            }
            .switch-footer-message p {
                text-align: center;
            }
        }

        /* ========================================
           SECTION 5: SUPPORT & CTA
           ======================================== */
        .support-cta-section {
            padding: 120px 60px;
            background: linear-gradient(180deg, #1e3a5f 0%, #152a45 100%);
            position: relative;
            overflow: hidden;
        }
        .support-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }
        .support-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        /* Floating decorative shapes */
        .support-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 0;
        }
        .support-shape {
            position: absolute;
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 50%;
        }
        .support-shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
        }
        .support-shape-2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            left: -80px;
        }
        .support-shape-3 {
            width: 120px;
            height: 120px;
            top: 40%;
            right: 10%;
            border-color: rgba(255, 255, 255, 0.05);
        }
        /* Header */
        .support-header {
            text-align: center;
            margin-bottom: 70px;
        }
        .support-icon-bubble {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pd-accent) 0%, #d4b545 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
            position: relative;
        }
        .support-icon-bubble::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #d4b545;
        }
        .support-icon-bubble svg {
            width: 36px;
            height: 36px;
            stroke: #1e3a5f;
        }
        .support-header h2 {
            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .support-header h2 span {
            color: var(--pd-accent);
        }
        .support-header p {
            font-family: var(--font-body);
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
            margin: 0 auto;
        }
        /* Benefits row */
        .support-benefits {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }
        .support-benefit {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            max-width: 320px;
        }
        .support-benefit-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .support-benefit-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pd-accent);
        }
        .support-benefit p {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin: 0;
        }
        /* CTA Cards Grid */
        .support-cta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }
        .support-cta-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        .support-cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--pd-accent), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .support-cta-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        .support-cta-card:hover::before {
            opacity: 1;
        }
        .cta-card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: all 0.3s ease;
        }
        .support-cta-card:hover .cta-card-icon {
            background: linear-gradient(135deg, var(--pd-accent) 0%, #d4b545 100%);
            border-color: var(--pd-accent);
            transform: scale(1.1);
        }
        .cta-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--pd-accent);
            transition: stroke 0.3s ease;
        }
        .support-cta-card:hover .cta-card-icon svg {
            stroke: #1e3a5f;
        }
        .cta-card-label {
            display: inline-block;
            background: rgba(201, 162, 39, 0.1);
            color: var(--pd-accent);
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .support-cta-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }
        .support-cta-card p {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .cta-card-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .cta-card-button svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .support-cta-card:hover .cta-card-button {
            background: var(--pd-accent);
            border-color: var(--pd-accent);
            color: #1e3a5f;
        }
        .support-cta-card:hover .cta-card-button svg {
            transform: translateX(4px);
        }
        /* Closing Statement */
        .support-closing {
            text-align: center;
            padding: 50px 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            position: relative;
        }
        .support-closing::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-family: Georgia, serif;
            font-size: 80px;
            color: rgba(201, 162, 39, 0.15);
            line-height: 1;
        }
        .support-closing p {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .support-closing p span {
            color: var(--pd-accent);
            font-weight: 600;
        }
        /* Responsive - Section 5 */
        @media (max-width: 1024px) {
            .support-cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .support-cta-grid .support-cta-card:last-child {
                grid-column: span 2;
                max-width: 400px;
                justify-self: center;
            }
        }
        @media (max-width: 768px) {
            .support-cta-section {
                padding: 80px 20px;
            }
            .support-header h2 {
                font-size: 32px;
            }
            .support-header p {
                font-size: 17px;
            }
            .support-benefits {
                flex-direction: column;
                align-items: center;
                gap: 24px;
            }
            .support-benefit {
                max-width: 100%;
            }
            .support-cta-grid {
                grid-template-columns: 1fr;
            }
            .support-cta-grid .support-cta-card:last-child {
                grid-column: span 1;
                max-width: 100%;
            }
            .support-closing p {
                font-size: 20px;
            }
            .support-closing::before {
                font-size: 60px;
                left: 20px;
            }
        }
