        /* ========================================
           WHY BU - "THE PROMISE" THEME
           Warm Sunset + Deep Navy Palette
           ======================================== */
        :root {
            --wb-deep: #1a2e44;
            --wb-navy: #243b55;
            --wb-navy-light: #2d4a6a;
            --wb-coral: #e8734a;
            --wb-coral-light: #f28b68;
            --wb-sunset: #f4a261;
            --wb-gold: #e9c46a;
            --wb-warm-white: #fffaf5;
            --wb-cream: #fef7f0;
            --wb-stone: #f5ebe0;
            --wb-text: #1a2e44;
            --wb-text-light: #5a6b7d;
            --wb-border: rgba(26, 46, 68, 0.1);
            --wb-gradient-hero: linear-gradient(135deg, #1a2e44 0%, #243b55 35%, #2d4a6a 70%, #3d5a80 100%);
            --wb-gradient-warm: linear-gradient(135deg, #e8734a 0%, #f4a261 100%);
            --wb-gradient-gold: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - THE BLOOMINGTON PROMISE
           ======================================== */
        .wb-hero {
            position: relative;
            min-height: 700px;
            background: var(--wb-gradient-hero);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Warm glow orbs */
        .wb-hero::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -8%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(232, 115, 74, 0.15) 0%, transparent 60%);
            animation: wbOrbFloat 8s ease-in-out infinite;
            pointer-events: none;
        }

        .wb-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(233, 196, 106, 0.12) 0%, transparent 60%);
            animation: wbOrbFloat 10s ease-in-out infinite reverse;
            pointer-events: none;
        }

        @keyframes wbOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -20px) scale(1.05); }
        }

        /* Subtle grid pattern */
        .wb-hero-grid {
            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: 80px 80px;
            pointer-events: none;
        }

        /* Decorative shapes */
        .wb-hero-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .wb-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            background: #fff;
        }

        .wb-shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 15%;
            animation: wbShapePulse 6s ease-in-out infinite;
        }

        .wb-shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            right: 25%;
            animation: wbShapePulse 8s ease-in-out infinite 1s;
        }

        .wb-shape-3 {
            width: 80px;
            height: 80px;
            top: 35%;
            right: 40%;
            animation: wbShapePulse 5s ease-in-out infinite 0.5s;
        }

        @keyframes wbShapePulse {
            0%, 100% { transform: scale(1); opacity: 0.06; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        .wb-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Content */
        .wb-hero-content {
            color: #ffffff;
        }

        /* Promise Badge */
        .wb-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(232, 115, 74, 0.15);
            border: 1px solid rgba(232, 115, 74, 0.3);
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 28px;
            animation: wbFadeInUp 0.6s ease both;
        }

        .wb-hero-badge-icon {
            width: 24px;
            height: 24px;
            background: var(--wb-gradient-warm);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wb-hero-badge-icon svg {
            width: 12px;
            height: 12px;
            stroke: #fff;
        }

        .wb-hero-badge span {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--wb-coral-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Hero Title */
        .wb-hero-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.1;
            margin: 0 0 20px;
            animation: wbFadeInUp 0.6s ease 0.1s both;
        }

        .wb-hero-title .accent {
            background: var(--wb-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Subheading */
        .wb-hero-subheading {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 500;
            color: rgba(255,255,255,0.95);
            line-height: 1.5;
            margin: 0 0 24px;
            max-width: 580px;
            animation: wbFadeInUp 0.6s ease 0.2s both;
        }

        /* Body Text */
        .wb-hero-body {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin: 0 0 36px;
            max-width: 560px;
            animation: wbFadeInUp 0.6s ease 0.3s both;
        }

        /* CTA Buttons */
        .wb-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: wbFadeInUp 0.6s ease 0.4s both;
        }

        .wb-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 12px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .wb-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .wb-btn-primary {
            background: var(--wb-gradient-warm);
            color: #ffffff;
            box-shadow: 0 8px 30px rgba(232, 115, 74, 0.35);
        }

        .wb-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(232, 115, 74, 0.5);
            color: #ffffff;
        }

        .wb-btn-primary:hover svg {
            transform: translateX(4px);
        }

        .wb-btn-secondary {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #ffffff;
        }

        .wb-btn-secondary:hover {
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
            color: #ffffff;
        }

        /* Right Side - Visual Card Stack */
        .wb-hero-visual {
            position: relative;
            animation: wbFadeInRight 0.8s ease 0.5s both;
        }

        .wb-visual-stack {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* Promise Cards */
        .wb-promise-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: left center;
        }

        .wb-promise-card:nth-child(1) { animation: wbSlideIn 0.5s ease 0.6s both; }
        .wb-promise-card:nth-child(2) { animation: wbSlideIn 0.5s ease 0.75s both; }
        .wb-promise-card:nth-child(3) { animation: wbSlideIn 0.5s ease 0.9s both; }
        .wb-promise-card:nth-child(4) { animation: wbSlideIn 0.5s ease 1.05s both; }

        .wb-promise-card:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .wb-promise-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wb-promise-icon svg {
            width: 26px;
            height: 26px;
            stroke-width: 1.8;
        }

        .wb-promise-icon.coral {
            background: linear-gradient(135deg, rgba(232, 115, 74, 0.15) 0%, rgba(244, 162, 97, 0.1) 100%);
        }
        .wb-promise-icon.coral svg { stroke: var(--wb-coral); }

        .wb-promise-icon.gold {
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.2) 0%, rgba(244, 162, 97, 0.1) 100%);
        }
        .wb-promise-icon.gold svg { stroke: #d4940a; }

        .wb-promise-icon.navy {
            background: linear-gradient(135deg, rgba(26, 46, 68, 0.12) 0%, rgba(45, 74, 106, 0.08) 100%);
        }
        .wb-promise-icon.navy svg { stroke: var(--wb-navy); }

        .wb-promise-icon.teal {
            background: linear-gradient(135deg, rgba(38, 166, 154, 0.12) 0%, rgba(77, 182, 172, 0.08) 100%);
        }
        .wb-promise-icon.teal svg { stroke: #26a69a; }

        .wb-promise-content {
            flex: 1;
        }

        .wb-promise-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--wb-deep);
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .wb-promise-desc {
            font-size: 0.85rem;
            color: var(--wb-text-light);
            line-height: 1.5;
            margin: 0;
        }

        /* Animations */
        @keyframes wbFadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes wbFadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes wbSlideIn {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .wb-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .wb-hero-visual {
                max-width: 550px;
            }
        }

        @media (max-width: 768px) {
            .wb-hero {
                padding: 120px 24px 70px;
                min-height: auto;
            }
            .wb-hero-title {
                font-size: 2.4rem;
            }
            .wb-hero-subheading {
                font-size: 1.1rem;
            }
            .wb-hero-body {
                font-size: 0.95rem;
            }
            .wb-hero-ctas {
                flex-direction: column;
            }
            .wb-btn {
                justify-content: center;
                width: 100%;
            }
            .wb-promise-card {
                padding: 18px 20px;
            }
            .wb-promise-icon {
                width: 44px;
                height: 44px;
            }
            .wb-promise-title {
                font-size: 1rem;
            }
            .wb-shape-1, .wb-shape-2, .wb-shape-3 {
                display: none;
            }
        }

        /* ========================================
           SECTION 1 - VALUE PILLARS
           ======================================== */
        .wb-pillars {
            padding: 100px 60px;
            background: var(--wb-cream);
            position: relative;
            overflow: hidden;
        }

        .wb-pillars::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 115, 74, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .wb-pillars-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .wb-pillars-content {
            position: relative;
            z-index: 2;
        }

        .wb-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(232, 115, 74, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .wb-section-badge span {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--wb-coral);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .wb-section-title {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--wb-deep);
            line-height: 1.2;
            margin: 0 0 40px;
        }

        .wb-section-title .accent {
            background: var(--wb-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .wb-pillar-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .wb-pillar-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(26, 46, 68, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(26, 46, 68, 0.06);
        }

        .wb-pillar-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px rgba(26, 46, 68, 0.1);
            border-color: rgba(232, 115, 74, 0.2);
        }

        .wb-pillar-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wb-pillar-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.8;
        }

        .wb-pillar-icon.style-1 { background: linear-gradient(135deg, rgba(232, 115, 74, 0.12) 0%, rgba(244, 162, 97, 0.08) 100%); }
        .wb-pillar-icon.style-1 svg { stroke: var(--wb-coral); }

        .wb-pillar-icon.style-2 { background: linear-gradient(135deg, rgba(38, 166, 154, 0.12) 0%, rgba(77, 182, 172, 0.08) 100%); }
        .wb-pillar-icon.style-2 svg { stroke: #26a69a; }

        .wb-pillar-icon.style-3 { background: linear-gradient(135deg, rgba(233, 196, 106, 0.15) 0%, rgba(244, 162, 97, 0.08) 100%); }
        .wb-pillar-icon.style-3 svg { stroke: #d4940a; }

        .wb-pillar-icon.style-4 { background: linear-gradient(135deg, rgba(26, 46, 68, 0.1) 0%, rgba(45, 74, 106, 0.06) 100%); }
        .wb-pillar-icon.style-4 svg { stroke: var(--wb-navy); }

        .wb-pillar-icon.style-5 { background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(186, 104, 200, 0.06) 100%); }
        .wb-pillar-icon.style-5 svg { stroke: #9c27b0; }

        .wb-pillar-text h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--wb-deep);
            margin: 0 0 6px;
        }

        .wb-pillar-text p {
            font-size: 0.9rem;
            color: var(--wb-text-light);
            line-height: 1.6;
            margin: 0;
        }

        .wb-pillars-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(26, 46, 68, 0.15);
        }

        .wb-pillars-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .wb-pillars-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 46, 68, 0.8) 0%, transparent 100%);
            padding: 40px 30px 30px;
        }

        .wb-pillars-image-stat {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .wb-pillars-image-stat-item {
            text-align: center;
        }

        .wb-pillars-image-stat-item .number {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
        }

        .wb-pillars-image-stat-item .label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.8);
        }

        @media (max-width: 1100px) {
            .wb-pillars-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .wb-pillars-image {
                order: -1;
            }
            .wb-pillars-image img {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .wb-pillars {
                padding: 70px 24px;
            }
            .wb-section-title {
                font-size: 2rem;
            }
            .wb-pillar-item {
                padding: 18px;
            }
            .wb-pillar-icon {
                width: 48px;
                height: 48px;
            }
        }

        /* ========================================
           SECTION 2 - GLOBAL UNIVERSITY BANNER
           ======================================== */
        .wb-global-banner {
            background: var(--wb-gradient-hero);
            padding: 100px 60px;
            position: relative;
            overflow: hidden;
        }

        .wb-global-banner::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(233, 196, 106, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .wb-global-banner::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 115, 74, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .wb-global-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .wb-global-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: wbGlobeSpin 20s linear infinite;
        }

        @keyframes wbGlobeSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .wb-global-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--wb-sunset);
            animation: wbGlobeSpin 20s linear infinite reverse;
        }

        .wb-global-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 24px;
        }

        .wb-global-text {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .wb-global-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .wb-global-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 18px 28px;
            border-radius: 60px;
            transition: all 0.3s ease;
        }

        .wb-global-badge:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.25);
        }

        .wb-global-badge-icon {
            width: 44px;
            height: 44px;
            background: var(--wb-gradient-warm);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wb-global-badge-icon svg {
            width: 22px;
            height: 22px;
            stroke: #fff;
        }

        .wb-global-badge span {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
        }

        @media (max-width: 768px) {
            .wb-global-banner {
                padding: 70px 24px;
            }
            .wb-global-title {
                font-size: 2rem;
            }
            .wb-global-text {
                font-size: 1rem;
            }
            .wb-global-badges {
                flex-direction: column;
                align-items: center;
            }
            .wb-global-badge {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
        }

        /* ========================================
           SECTION 3 - ACADEMIC EXCELLENCE
           ======================================== */
        .wb-excellence {
            padding: 100px 60px;
            background: var(--wb-warm-white);
            position: relative;
            overflow: hidden;
        }

        .wb-excellence::before {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233, 196, 106, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .wb-excellence-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .wb-excellence-content {
            position: relative;
            z-index: 2;
        }

        .wb-excellence-text {
            font-size: 1.1rem;
            color: var(--wb-text-light);
            line-height: 1.8;
            margin: 0 0 40px;
        }

        .wb-excellence-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .wb-stat-card {
            background: #fff;
            padding: 28px 24px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(26, 46, 68, 0.06);
            border: 1px solid rgba(26, 46, 68, 0.05);
            transition: all 0.3s ease;
        }

        .wb-stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(26, 46, 68, 0.1);
        }

        .wb-stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(232, 115, 74, 0.1) 0%, rgba(244, 162, 97, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .wb-stat-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--wb-coral);
        }

        .wb-stat-label {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--wb-deep);
            line-height: 1.4;
        }

        .wb-excellence-visual {
            position: relative;
        }

        .wb-excellence-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(26, 46, 68, 0.12);
        }

        .wb-excellence-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .wb-floating-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: #fff;
            padding: 24px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(26, 46, 68, 0.15);
            display: flex;
            align-items: center;
            gap: 16px;
            max-width: 280px;
        }

        .wb-floating-card-icon {
            width: 52px;
            height: 52px;
            background: var(--wb-gradient-warm);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wb-floating-card-icon svg {
            width: 26px;
            height: 26px;
            stroke: #fff;
        }

        .wb-floating-card-text {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--wb-deep);
            line-height: 1.4;
        }

        @media (max-width: 1100px) {
            .wb-excellence-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .wb-excellence-visual {
                order: -1;
            }
            .wb-floating-card {
                left: 20px;
                bottom: -20px;
            }
        }

        @media (max-width: 768px) {
            .wb-excellence {
                padding: 70px 24px;
            }
            .wb-excellence-stats {
                grid-template-columns: 1fr;
            }
            .wb-excellence-image img {
                height: 350px;
            }
            .wb-floating-card {
                position: relative;
                left: 0;
                bottom: 0;
                margin-top: 20px;
                max-width: 100%;
            }
        }

        /* ========================================
           SECTION 4 - FLEXIBLE LEARNING
           ======================================== */
        .wb-flexible {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--wb-stone) 0%, var(--wb-cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .wb-flexible-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .wb-flexible-header {
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .wb-flexible-text {
            font-size: 1.1rem;
            color: var(--wb-text-light);
            line-height: 1.8;
            margin: 0;
        }

        .wb-study-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .wb-study-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            text-align: left;
            box-shadow: 0 8px 30px rgba(26, 46, 68, 0.06);
            border: 1px solid rgba(26, 46, 68, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .wb-study-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--wb-gradient-warm);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .wb-study-card:hover::before {
            transform: scaleX(1);
        }

        .wb-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(26, 46, 68, 0.12);
        }

        .wb-study-card-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 20px;
        }

        .wb-study-card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wb-study-card-icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.6;
        }

        .wb-study-card-icon.options {
            background: linear-gradient(135deg, rgba(232, 115, 74, 0.12) 0%, rgba(244, 162, 97, 0.06) 100%);
        }
        .wb-study-card-icon.options svg { stroke: var(--wb-coral); }

        .wb-study-card-icon.modes {
            background: linear-gradient(135deg, rgba(26, 46, 68, 0.1) 0%, rgba(45, 74, 106, 0.05) 100%);
        }
        .wb-study-card-icon.modes svg { stroke: var(--wb-navy); }

        .wb-study-card-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--wb-deep);
            margin: 0;
        }

        .wb-study-card-desc {
            font-size: 0.95rem;
            color: var(--wb-text-light);
            line-height: 1.7;
            margin: 0 0 24px;
        }

        .wb-study-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .wb-study-feature {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--wb-cream);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--wb-text);
        }

        .wb-study-feature svg {
            width: 14px;
            height: 14px;
            stroke: var(--wb-coral);
        }

        .wb-study-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--wb-coral);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .wb-study-card-cta svg {
            width: 18px;
            height: 18px;
            stroke: var(--wb-coral);
            transition: transform 0.3s ease;
        }

        .wb-study-card-cta:hover {
            color: var(--wb-coral-light);
        }

        .wb-study-card-cta:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 900px) {
            .wb-study-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .wb-flexible {
                padding: 70px 24px;
            }
            .wb-study-card {
                padding: 28px;
            }
            .wb-study-card-icon {
                width: 52px;
                height: 52px;
            }
        }

        /* ========================================
           SECTION 5 - CAREER-READY EDUCATION
           ======================================== */
        .wb-career {
            padding: 100px 60px;
            background: var(--wb-gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .wb-career::before {
            content: '';
            position: absolute;
            top: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 115, 74, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .wb-career::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233, 196, 106, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .wb-career-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .wb-career-content h2 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 24px;
        }

        .wb-career-content h2 .accent {
            background: var(--wb-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .wb-career-text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 40px;
        }

        .wb-career-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .wb-career-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .wb-career-feature:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
            border-color: rgba(232, 115, 74, 0.3);
        }

        .wb-career-feature-icon {
            width: 48px;
            height: 48px;
            background: var(--wb-gradient-warm);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wb-career-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
        }

        .wb-career-feature span {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        .wb-career-visual {
            position: relative;
        }

        .wb-career-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .wb-career-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .wb-career-cta {
            margin-top: 36px;
        }

        .wb-btn-light {
            background: #fff;
            color: var(--wb-deep);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .wb-btn-light:hover {
            background: var(--wb-cream);
            color: var(--wb-deep);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 1100px) {
            .wb-career-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .wb-career-visual {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .wb-career {
                padding: 70px 24px;
            }
            .wb-career-content h2 {
                font-size: 2rem;
            }
            .wb-career-features {
                grid-template-columns: 1fr;
            }
            .wb-career-image img {
                height: 350px;
            }
        }

        /* ========================================
           SECTION 6 - SUPPORT FOR EVERY LEARNER
           ======================================== */
        .wb-support {
            padding: 100px 60px;
            background: var(--wb-warm-white);
            position: relative;
            overflow: hidden;
        }

        .wb-support::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .wb-support-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        .wb-support-content {
            position: relative;
            z-index: 2;
        }

        .wb-support-text {
            font-size: 1.1rem;
            color: var(--wb-text-light);
            line-height: 1.8;
            margin: 0 0 36px;
        }

        .wb-support-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .wb-support-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            padding: 18px 20px;
            border-radius: 14px;
            box-shadow: 0 4px 15px rgba(26, 46, 68, 0.05);
            border: 1px solid rgba(26, 46, 68, 0.05);
            transition: all 0.3s ease;
        }

        .wb-support-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(26, 46, 68, 0.1);
            border-color: rgba(156, 39, 176, 0.2);
        }

        .wb-support-card:nth-child(5) {
            grid-column: span 2;
            max-width: 320px;
        }

        .wb-support-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wb-support-card-icon svg {
            width: 22px;
            height: 22px;
            stroke-width: 1.8;
        }

        .wb-support-card-icon.purple {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(186, 104, 200, 0.05) 100%);
        }
        .wb-support-card-icon.purple svg { stroke: #9c27b0; }

        .wb-support-card-icon.coral {
            background: linear-gradient(135deg, rgba(232, 115, 74, 0.1) 0%, rgba(244, 162, 97, 0.05) 100%);
        }
        .wb-support-card-icon.coral svg { stroke: var(--wb-coral); }

        .wb-support-card-icon.teal {
            background: linear-gradient(135deg, rgba(38, 166, 154, 0.1) 0%, rgba(77, 182, 172, 0.05) 100%);
        }
        .wb-support-card-icon.teal svg { stroke: #26a69a; }

        .wb-support-card-icon.navy {
            background: linear-gradient(135deg, rgba(26, 46, 68, 0.1) 0%, rgba(45, 74, 106, 0.05) 100%);
        }
        .wb-support-card-icon.navy svg { stroke: var(--wb-navy); }

        .wb-support-card-icon.gold {
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.15) 0%, rgba(244, 162, 97, 0.08) 100%);
        }
        .wb-support-card-icon.gold svg { stroke: #d4940a; }

        .wb-support-card span {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--wb-deep);
            line-height: 1.3;
        }

        .wb-support-visual {
            position: relative;
        }

        .wb-support-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(26, 46, 68, 0.12);
        }

        .wb-support-image img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 1100px) {
            .wb-support-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .wb-support-visual {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .wb-support {
                padding: 70px 24px;
            }
            .wb-support-cards {
                grid-template-columns: 1fr;
            }
            .wb-support-card:nth-child(5) {
                grid-column: span 1;
                max-width: 100%;
            }
            .wb-support-image img {
                height: 350px;
            }
        }

        /* ========================================
           SECTION 7 - SCHOLARSHIPS & FUNDING
           ======================================== */
        .wb-funding {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--wb-stone) 0%, var(--wb-cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .wb-funding-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .wb-funding-header {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .wb-funding-text {
            font-size: 1.1rem;
            color: var(--wb-text-light);
            line-height: 1.8;
            margin: 0;
        }

        .wb-funding-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .wb-funding-card {
            background: #fff;
            padding: 32px 28px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 6px 25px rgba(26, 46, 68, 0.06);
            border: 1px solid rgba(26, 46, 68, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .wb-funding-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--wb-gradient-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .wb-funding-card:hover::before {
            transform: scaleX(1);
        }

        .wb-funding-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(26, 46, 68, 0.12);
        }

        .wb-funding-card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .wb-funding-card-icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.6;
        }

        .wb-funding-card-icon.gold {
            background: linear-gradient(135deg, rgba(233, 196, 106, 0.15) 0%, rgba(244, 162, 97, 0.08) 100%);
        }
        .wb-funding-card-icon.gold svg { stroke: #d4940a; }

        .wb-funding-card-icon.coral {
            background: linear-gradient(135deg, rgba(232, 115, 74, 0.12) 0%, rgba(244, 162, 97, 0.06) 100%);
        }
        .wb-funding-card-icon.coral svg { stroke: var(--wb-coral); }

        .wb-funding-card-icon.navy {
            background: linear-gradient(135deg, rgba(26, 46, 68, 0.1) 0%, rgba(45, 74, 106, 0.05) 100%);
        }
        .wb-funding-card-icon.navy svg { stroke: var(--wb-navy); }

        .wb-funding-card-icon.teal {
            background: linear-gradient(135deg, rgba(38, 166, 154, 0.12) 0%, rgba(77, 182, 172, 0.06) 100%);
        }
        .wb-funding-card-icon.teal svg { stroke: #26a69a; }

        .wb-funding-card-icon.purple {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(186, 104, 200, 0.05) 100%);
        }
        .wb-funding-card-icon.purple svg { stroke: #9c27b0; }

        .wb-funding-card-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--wb-deep);
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 900px) {
            .wb-funding-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .wb-funding {
                padding: 70px 24px;
            }
            .wb-funding-grid {
                grid-template-columns: 1fr;
            }
            .wb-funding-card {
                padding: 24px 20px;
            }
        }

        /* ========================================
           SECTION 8 - FINAL CTA BLOCK
           ======================================== */
        .wb-final-cta {
            padding: 100px 60px;
            background: var(--wb-gradient-hero);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .wb-final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(232, 115, 74, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .wb-final-cta-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .wb-final-cta-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 40px;
        }

        .wb-final-cta-title .accent {
            background: var(--wb-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .wb-final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .wb-final-cta-micro {
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .wb-final-cta {
                padding: 70px 24px;
            }
            .wb-final-cta-title {
                font-size: 2rem;
            }
            .wb-final-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .wb-final-cta-buttons .wb-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* 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(--wb-deep);
            margin-bottom: 10px;
        }
        .bu-placeholder-section p {
            color: var(--wb-text-light);
            font-size: 0.95rem;
        }
