<style> 

       .comparison {
    background: #f8f9fa;
   padding: 50px 0 !important;
}

    .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: #303030;
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f8fafc;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .spec-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .spec-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .industry-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .industry-icon {
            font-size: 2rem;
            color: #10b981;
            margin-bottom: 1rem;
        }
        
        .process-steps {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
        }
        
        .step-number {
            background: #2563eb;
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
          margin-bottom: 30px;
        }
        
        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid #2563eb;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2563eb;
            margin: 1rem 0;
        }
        
       
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: #2563eb;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #64748b;
        }

  /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-item {
            margin-bottom: 20px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
      
        
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        @media (max-width: 768px) {
            .process-step {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
        }
    </style>