
        :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;
        }

        .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;
        }
        
        .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);
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            color: var(--orange-primary);
        }

        /* Custom Title Styles with !important */
        .title-main {
            font-size: 3rem !important; /* 48px */
            font-weight: 900 !important; /* font-black */
            line-height: 1.1 !important;
        }
        .title-section {
            font-size: 2.25rem !important; /* 36px */
            font-weight: 900 !important; /* font-black */
        }

        .subtitle-style-for-h5 {
            font-size: 1.25rem !important;
            font-weight: 400 !important;
            color: #4B5563 !important;
            padding: 0 1rem;
        }
        
        @media (min-width: 1024px) { /* lg breakpoint */
            .title-main {
                font-size: 4.5rem !important; /* 72px */
            }
            .title-section {
                font-size: 3rem !important; /* 48px */
            }
        }
        
        @media (max-width: 768px) {
            .stat-number {
                font-size: 3rem;
            }
        }
        
        .quote-box {
            position: relative;
            padding: 1.5rem;
            background: var(--orange-light);
            border-left: 4px solid var(--orange-primary);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
            }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        .cta-button {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:active {
            transform: scale(0.98);
        }

        .linkedin-blue {
            color: #0077B5;
        }
    