
        :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;
            border-radius: 1.5rem;
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .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);
        }
        .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;
        }
        .subtitle-style-for-h5 {
            font-size: 1.25rem !important;
            font-weight: 400 !important;
            color: #4B5563 !important;
            padding: 0 1rem;
        }
        @media (min-width: 1024px) {
            .title-main {
                font-size: 4.2rem !important;
            }
            .title-section {
                font-size: 3rem !important;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 var(--orange-medium); }
            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;
            background-color: var(--orange-primary);
        }
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px var(--orange-medium);
            background-color: #E65A26;
        }
        .cta-button:active {
            transform: scale(0.98);
        }
        .text-orange-500 {
            color: #FF6B35;
        }
        .bg-orange-light {
            background-color: var(--orange-light);
        }
    