:root {
            --primary: #793A85;
            --secondary: #FFC107;
            --dark: #343a40;
            --light: #f8f9fa;
            --success: #28a745;
            --gradient: linear-gradient(135deg, var(--primary) 0%, #5a2c6a 100%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }
        
        /* Hero Section */
        .hero-section {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxwYXRoIGZpbGw9IiNmZmZmZmYwMiIgZD0iTTAgNDAwYzAtMjIwLjkxIDE3OS4wOS00MDAgNDAwLTQwMHM0MDAgMTc5LjA5IDQwMCA0MDB2NDAwSDBWNDAweiI+PC9wYXRoPjwvc3ZnPg==') no-repeat center bottom;
            opacity: 0.1;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Cards & Sections */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
        }
        
        .software-card {
            text-align: center;
            padding: 2rem 1rem;
            height: 100%;
            position: relative;
        }
        
        .software-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .badge-free {
            background-color: var(--success);
            color: white;
        }
        
        .badge-paid {
            background-color: var(--primary);
            color: white;
        }
        
        .software-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: rgba(121, 58, 133, 0.1);
            border-radius: 50%;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--success);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        /* Pricing Section */
        .pricing-card {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(121, 58, 133, 0.2);
        }
        
        .pricing-header {
            background: var(--gradient);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .price-period {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        .pricing-features {
            padding: 1.5rem;
        }
        
        .pricing-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }
        
        .pricing-features i {
            color: var(--success);
            margin-right: 10px;
        }
        
        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .form-header {
            background: var(--gradient);
            color: white;
            padding: 1rem;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(121, 58, 133, 0.3);
        }
        
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Demo Section */
        .demo-section {
            background-color: rgba(121, 58, 133, 0.05);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
        }
