
        /* UNIFIED ORANGE THEME */
        :root {
            --orange-primary: #FF6B35;
            --orange-light: rgba(255, 107, 53, 0.1);
            --orange-medium: rgba(255, 107, 53, 0.3);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
        }

        .gradient-orange {
            background: linear-gradient(135deg, var(--orange-primary) 0%, rgba(255, 107, 53, 0.6) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF8C61 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .bento-card {
            background: white;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease-in-out;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            border: 2px solid var(--orange-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange-light);
            pointer-events: none;
            flex-shrink: 0;
        }
        
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .number-highlight {
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            line-height: 0.9;
            color: var(--orange-primary);
            opacity: 0.08;
            position: absolute;
            top: -20px;
            right: 20px;
            z-index: 0;
        }

        .title-main {
            font-size: 3rem !important;
            font-weight: 900 !important;
            line-height: 1.1 !important;
        }
        .title-section {
            font-size: 2.25rem !important;
            font-weight: 900 !important;
        }
        
        @media (min-width: 1024px) {
            .title-main {
                font-size: 4.5rem !important;
            }
            .title-section {
                font-size: 3rem !important;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .text-orange {
             color: var(--orange-primary);
        }

        .subtitle-style-for-h5 {
            font-size: 1.25rem !important;
            font-weight: 400 !important;
            color: #6b7280 !important;
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            max-width: 48rem !important;
        }

        /* Fix for Font Awesome icons */
        .fas, .far, .fab, .fa {
            font-style: normal !important;
        }

        /* Stats highlight */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            background: var(--orange-light);
            border-radius: 1rem;
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--orange-primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #4b5563;
        }

        /* Case study cards */
        .case-card {
            position: relative;
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease-in-out;
            overflow: hidden;
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        }

        .case-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange-primary);
            opacity: 0.3;
        }

        .case-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            padding-right: 3rem;
        }

        .case-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
    