.court-workflow {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .workflow-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 2rem 0;
        }
        
        .workflow-step {
            flex: 1;
            text-align: center;
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: #2c5f96;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
        }
        
        .step-connector {
            position: absolute;
            top: 40px;
            left: 20%;
            right: 20%;
            height: 3px;
            background: #cbd5e0;
            z-index: 1;
        }
        
        .ai-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 4px solid #2c5f96;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-card i {
            font-size: 2.5rem;
            color: #2c5f96;
            margin-bottom: 15px;
        }
        
        .implementation-roadmap {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .roadmap-phase {
            display: flex;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .roadmap-phase:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .phase-marker {
            flex: 0 0 60px;
            height: 60px;
            background: #2c5f96;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1.5rem;
        }
        
        .phase-content {
            flex: 1;
        }
        
        .case-study {
            background: #f0f7ff;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            border-left: 4px solid #2c5f96;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .metric-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .metric-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c5f96;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .metric-label {
            font-size: 0.9rem;
            color: #4a5568;
        }
        
        .risk-mitigation {
            background: #fff8f0;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            border-left: 4px solid #e53e3e;
        }
        
        .comparison-visual {
            display: flex;
            margin: 2rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .comparison-col {
            flex: 1;
            padding: 2rem;
        }
        
        .comparison-col.traditional {
            background: #f7fafc;
        }
        
        .comparison-col.ai {
            background: #f0fff4;
        }
        
        .comparison-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .comparison-header i {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .comparison-header.traditional i {
            color: #718096;
        }
        
        .comparison-header.ai i {
            color: #38a169;
        }
        
        .tech-stack {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        
        .tech-item {
            background: white;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
        }
        
        .tech-item i {
            font-size: 2rem;
            color: #2c5f96;
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .workflow-steps {
                flex-direction: column;
            }
            
            .step-connector {
                display: none;
            }
            
            .workflow-step {
                margin-bottom: 2rem;
            }
            
            .roadmap-phase {
                flex-direction: column;
            }
            
            .phase-marker {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .comparison-visual {
                flex-direction: column;
            }
        }