
        /* Theme cards specific styling */
        .demo-section {
            padding: 6rem 0;
            margin-top: -4rem;
        }

        .theme-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            margin-bottom: 2rem;
            border: 1px solid #e5e7eb;
        }

        .theme-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .theme-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .theme-body {
            padding: 1.5rem;
        }

        .theme-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .demo-credentials {
            background-color: var(--primary-light);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .credential-item {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .credential-label {
            font-weight: 500;
            color: var(--primary-dark);
            display: inline-block;
            width: 80px;
        }

        .demo-note {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px dashed #e5e7eb;
        }
      
        /* Hero Section */
        .product-hero {
            padding: 10rem 0 4rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
        }
        
        .product-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .product-hero::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .product-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
    