
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .comparison-section {
            padding: 100px 0;
            background: white;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .comparison-header h1 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .comparison-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .table-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
            overflow: hidden;
        }

        .table-title {
            background: #23282d;
            padding: 1.5rem 2rem;
           
        }

        .table-title h2 {
            font-family: 'EB Garamond', serif;
            font-size: 1.8rem;
            color: #fff;
            margin: 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid #e5e5e5;
            vertical-align: top;
        }

        .comparison-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #000;
            font-size: 1.3rem;
        }

        .comparison-table th:first-child {
            width: 30%;
           
        }

        .comparison-table th:second-child {
            
         
}


        .comparison-table td {
            font-size: 1rem;
            color: #555;
        }

        .comparison-table tr:hover {
            background: #f8f9fa;
        }

        .feature-yes {
            color: #28a745;
            font-weight: 600;
            font-size: 1.3rem;
        }

        .feature-no {
            color: #dc3545;
            font-weight: 600;
            font-size: 1.3rem;
        }

        .feature-unknown {
            color: #ffc107;
            font-weight: 600;
        }

        .feature-partial {
            color: #17a2b8;
            font-weight: 600;
        }

        .highlight-row {
            background: #fff3cd !important;
        }

        .summary-section {
            background: #f6f6f6;
            padding: 80px 0;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .summary-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .summary-card h3 {
            font-family: 'EB Garamond', serif;
            font-size: 1.8rem;
            color: #e60023;
            margin-bottom: 1.5rem;
        }

        .summary-card h4 {
            font-weight: 600;
            color: #333;
            margin: 1.5rem 0 0.5rem 0;
        }

        .summary-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .summary-card ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            color: #555;
        }

        .summary-card ul li::before {
            content: "•";
            color: #e60023;
            font-weight: bold;
            margin-right: 12px;
            margin-top: 3px;
        }

        .recommendation-box {
            background: #e6f7ff;
            border-left: 4px solid #e60023;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .recommendation-box h4 {
            color: #e60023;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .comparison-header h1 { font-size: 2.5rem; }
            .comparison-table th,
            .comparison-table td { padding: 0.8rem 1rem; font-size: 0.9rem; }
            .summary-grid { grid-template-columns: 1fr; gap: 2rem; }
            .table-container { margin: 0 -20px 3rem -20px; border-radius: 0; }
        }

        /* Migration Section Styles */
        .migration-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }
        
        .migration-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .migration-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
        }
        
        .migration-content > p {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        /* Migration cards/grid */
        .migration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .migration-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
            text-align: left;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .migration-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

        .migration-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            margin-bottom: 1rem;
        }

        .migration-logo img {
            max-width: 120px;
            max-height: 60px;
            object-fit: contain;
        }

        .migration-features {
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.5rem 0;
            color: #4a5568;
        }

        .migration-features li {
            margin-bottom: 0.35rem;
        }

        .migration-link {
            display: inline-block;
            color: #e60023;
            font-weight: 600;
            text-decoration: none;
        }

        .migration-link:hover {
            text-decoration: underline;
        }
        
        .migration-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .migration-benefit {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .migration-benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .migration-benefit h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 1rem;
        }
        
        .migration-benefit p {
            color: #4a5568;
            line-height: 1.6;
        }
        
        .migration-cta {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        
        .migration-cta h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1rem;
        }
        
        .migration-cta p {
            color: #4a5568;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .cta-primary {
            display: inline-block;
            background: #e60023;
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .cta-primary:hover {
            background: #b8001a;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .migration-content h2 {
                font-size: 2rem;
            }
            
            .migration-benefits {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .migration-benefit {
                padding: 1.5rem;
            }
            
            .migration-card {
                padding: 1.5rem;
            }
        }

        /* Comparison Logos Styles */
        .comparison-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            
        }

        .comparison-logos img {
            max-height: 150px;
            max-width: 300px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .comparison-logos img:hover {
            transform: scale(1.05);
        }

        .vs-text {
            font-family: 'EB Garamond', serif;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: #e60023;
            padding: 0.2rem 0.6rem;
            border-radius: 50%;
            border: 2px solid #e60023;
            min-width: 35px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(230, 0, 35, 0.2);
        }

        @media (max-width: 768px) {
            .comparison-logos {
                gap: 1rem;
                padding: 0.8rem;
            }
            
            .comparison-logos img {
                max-height: 50px;
                max-width: 120px;
            }
            
            .vs-text {
                font-size: 0.9rem;
                padding: 0.15rem 0.5rem;
                min-width: 30px;
            }
        }

        /* Switching Section Styles */
        .switching-section {
            background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
            padding: 80px 0;
            border-top: 1px solid #fecaca;
        }
        
        .switching-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .switching-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
        }
        
        .switching-content > p {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .switching-example {
            margin-bottom: 3rem;
        }
        
        .example-box {
            background: white;
            border: 2px solid #e60023;
            border-radius: 12px;
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 4px 6px rgba(230, 0, 35, 0.1);
        }
        
        .example-box h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e60023;
            margin-bottom: 1rem;
        }
        
        .example-box p {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .switching-steps {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        
        .switching-steps h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
        }
        
        .switching-steps ol {
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .switching-steps li {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            padding-left: 0.5rem;
        }
        
        .switching-cta {
            background: #e60023;
            color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(230, 0, 35, 0.3);
        }
        
        .switching-cta p {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        
        .switching-cta a {
            color: white;
            text-decoration: underline;
            font-weight: 600;
        }
        
        .switching-cta a:hover {
            color: #fecaca;
        }
        
        @media (max-width: 768px) {
            .switching-content h2 {
                font-size: 2rem;
            }
            
            .example-box,
            .switching-steps {
                padding: 1.5rem;
            }
            
            .switching-cta {
                padding: 2rem;
            }
        }
 