        * {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .fade-in-right {
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .bot-image {
            width: 408px;
            height: 612px;
            object-fit: cover;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
        }
        
        .feature-item {
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .feature-item:hover {
            transform: translateX(8px);
            color: #2563eb;
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            transform: scale(1.2);
        }
        
        /* Individual Feature Styles */
        #work-feature .icon-container {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            animation: pulse-blue 2s ease-in-out infinite alternate;
        }
        
        #products-feature .icon-container {
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            animation: pulse-green 2s ease-in-out infinite alternate;
        }
        
        #earning-feature .icon-container {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            animation: pulse-orange 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulse-blue {
            0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
            100% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
        }
        
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
            100% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
        }
        
        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
            100% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
        }
        
        #work-feature:hover .icon-container {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }
        
        #products-feature:hover .icon-container {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }
        
        #earning-feature:hover .icon-container {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }
        
        .section-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        @media (max-width: 1024px) {
            .bot-image {
                width: auto;
                height: auto;
                max-width: 320px;
            }
            
            .section-bg {
                padding: 4rem 0;
            }
        }
        
        @media (max-width: 768px) {
            .bot-image {
                width: auto;
                height: auto;
                max-width: 280px;
            }
            
            .section-bg {
                padding: 3rem 0;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .feature-item > div:first-child {
                margin-right: 0;
                margin-bottom: 0.75rem;
            }
        }
        
        @media (max-width: 640px) {
            .bot-image {
                max-width: 240px;
            }
            
            .section-bg {
                padding: 2.5rem 0;
            }
        }
        
        .title-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle-gradient {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #334155;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .fade-in-left {
            animation: fadeInLeft 0.8s ease-out 0.2s both;
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Main Section */
        .main-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0 112px;
            width: 100%;
        }
        
        .main-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        
        /* Bot Image Section */
        .image-section {
            display: flex;
            justify-content: flex-start;
        }
        
        .image-container {
            position: relative;
        }
        
        .decorative-element-1 {
            position: absolute;
            top: -16px;
            right: -16px;
            width: 96px;
            height: 96px;
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(24px);
        }
        
        .decorative-element-2 {
            position: absolute;
            bottom: -24px;
            left: -24px;
            width: 128px;
            height: 128px;
            background: linear-gradient(135deg, #34d399, #0d9488);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(24px);
        }
        
        .bot-image {
            width: 100%;
            height: auto;
            max-width: 408px;
            object-fit: cover;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
            border-radius: 16px;
            position: relative;
            z-index: 1;
        }
        
        .floating-accent {
            position: absolute;
            top: 32px;
            left: 32px;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #fbbf24, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            opacity: 0.9;
        }
        
        .floating-accent i {
            color: white;
            font-size: 20px;
        }
        
        /* Text Content Section */
        .text-section {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .header {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .main-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            font-size: 36px;
            font-weight: 600;
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .description {
            font-size: 18px;
            color: #475569;
            line-height: 1.75;
            font-weight: 300;
            max-width: 576px;
        }
        
        /* Features */
        .features-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .feature-item:hover {
            transform: translateX(8px);
            color: #2563eb;
        }
        
        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon-1 {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }
        
        .feature-icon-2 {
            background: linear-gradient(135deg, #10b981, #0d9488);
        }
        
        .feature-icon-3 {
            background: linear-gradient(135deg, #f97316, #ef4444);
        }
        
        .feature-icon i {
            color: white;
            font-size: 18px;
        }
        
        .feature-content {
            min-width: 0;
        }
        
        .feature-title {
            font-weight: 600;
            color: #1e293b;
            font-size: 18px;
            margin-bottom: 4px;
        }
        
        .feature-description {
            color: #475569;
            font-size: 14px;
        }
        
        /* Background Decorative Elements */
        .bg-dot-1 {
            position: absolute;
            top: 40px;
            left: 40px;
            width: 8px;
            height: 8px;
            background: #60a5fa;
            border-radius: 50%;
            opacity: 0.6;
        }
        
        .bg-dot-2 {
            position: absolute;
            top: 128px;
            right: 128px;
            width: 12px;
            height: 12px;
            background: #a855f7;
            border-radius: 50%;
            opacity: 0.6;
        }
        
        .bg-dot-3 {
            position: absolute;
            bottom: 80px;
            left: 25%;
            width: 8px;
            height: 8px;
            background: #34d399;
            border-radius: 50%;
            opacity: 0.6;
        }
        
        /* Responsive Design */
        @media (max-width: 1280px) {
            .container {
                max-width: 1024px;
            }
        }
        
        @media (max-width: 1024px) {
            .bot-image {
                max-width: 350px;
            }
            
            .main-section {
                padding: 64px 0;
            }
            
            .grid {
                gap: 48px;
            }
        }
        
        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .image-section {
                order: 2;
                justify-content: center;
            }
            
            .text-section {
                order: 1;
            }
            
            .bot-image {
                max-width: 320px;
            }
            
            .main-section {
                padding: 48px 0;
            }
            
            .feature-item {
                padding: 12px 0;
            }
            
            .decorative-element-1,
            .decorative-element-2,
            .floating-accent,
            .bg-dot-1,
            .bg-dot-2,
            .bg-dot-3 {
                display: none;
            }
        }
        
        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
            
            .bot-image {
                max-width: 280px;
            }
            
            .main-section {
                padding: 40px 0;
            }
            
            .main-title {
                font-size: 28px;
            }
            
            .subtitle {
                font-size: 20px;
            }
            
            .description {
                font-size: 14px;
            }
            
            .feature-icon {
                width: 40px;
                height: 40px;
                margin-right: 12px;
            }
            
            .feature-icon i {
                font-size: 16px;
            }
            
            .feature-title {
                font-size: 16px;
            }
            
            .feature-description {
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .bot-image {
                max-width: 250px;
            }
            
            .main-section {
                padding: 32px 0;
            }
            
            .container {
                padding: 0 12px;
            }
            
            .main-title {
                font-size: 24px;
            }
            
            .subtitle {
                font-size: 18px;
            }
            
            .description {
                font-size: 14px;
            }
            
            .feature-icon {
                width: 32px;
                height: 32px;
            }
            
            .feature-icon i {
                font-size: 12px;
            }
            
            .feature-title {
                font-size: 14px;
            }
            
            .feature-description {
                font-size: 11px;
            }
            
            .text-section {
                gap: 24px;
            }
            
            .features-list {
                gap: 16px;
            }
        }
        
        @media (max-width: 375px) {
            .bot-image {
                max-width: 220px;
            }
            
            .main-section {
                padding: 24px 0;
            }
            
            .container {
                padding: 0 8px;
            }
            
            .text-section {
                gap: 20px;
            }
            
            .header {
                gap: 12px;
            }
            
            .features-list {
                gap: 12px;
            }
        }

        