* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .comparison-section {
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: slidePattern 30s linear infinite;
        }

        @keyframes slidePattern {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(20px) translateY(20px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .comparison-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #2d3748;
            margin-bottom: 50px;
            position: relative;
            animation: fadeInDown 1s ease-out;
        }

        .comparison-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
            animation: expandLine 1s ease-out 0.5s both;
        }

        @keyframes expandLine {
            0% { width: 0; }
            100% { width: 100px; }
        }

        .table-wrapper {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out 0.3s both;
            position: relative;
        }

        .table-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            position: relative;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .comparison-table th {
            color: white;
            padding: 25px 20px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            position: relative;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .comparison-table th:first-child {
            text-align: left;
            font-size: 1.2rem;
            background: linear-gradient(135deg, #4c51bf 0%, #553c9a 100%);
        }

        .comparison-table th:nth-child(2) {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            position: relative;
        }

        .comparison-table th:nth-child(2)::after {
            content: '⭐ RECOMMENDED';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffd700;
            color: #2d3748;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% { box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3); }
            100% { box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6); }
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
            position: relative;
        }

        .comparison-table tbody tr:hover {
            background-color: #f8f9ff;
            transform: scale(1.01);
        }

        .comparison-table tbody tr:hover::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
            pointer-events: none;
        }

        .comparison-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            transition: all 0.3s ease;
        }

        .comparison-table td:first-child {
            font-weight: 600;
            color: #2d3748;
            text-align: left;
            background: #f8f9fa;
            border-right: 3px solid #667eea;
            font-size: 1rem;
            line-height: 1.4;
        }

        .comparison-table td:nth-child(2) {
            background-color: #f0fff4;
            font-weight: 600;
            color: #2d3748;
        }

        .check-icon {
            color: #48bb78;
            font-size: 1.8rem;
            font-weight: bold;
            animation: checkBounce 0.6s ease-out;
            display: inline-block;
            text-shadow: 0 2px 4px rgba(72, 187, 120, 0.3);
        }

        .question-icon {
            color: #ed8936;
            font-size: 1.8rem;
            font-weight: bold;
            opacity: 0.7;
            display: inline-block;
        }

        @keyframes checkBounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .comparison-section {
                padding: 40px 15px;
            }
            
            .comparison-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .table-wrapper {
                margin: 0 -15px;
                border-radius: 0;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 15px 8px;
                font-size: 0.9rem;
            }
            
            .comparison-table th:first-child,
            .comparison-table td:first-child {
                font-size: 0.85rem;
                padding: 15px 12px;
            }
            
            .comparison-table th:nth-child(2)::after {
                font-size: 0.6rem;
                padding: 3px 8px;
                top: -10px;
            }
            
            .check-icon,
            .question-icon {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .comparison-title {
                font-size: 1.5rem;
                line-height: 1.3;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 6px;
                font-size: 0.8rem;
            }
            
            .comparison-table td:first-child {
                font-size: 0.8rem;
                padding: 12px 10px;
                line-height: 1.3;
            }
            
            .check-icon,
            .question-icon {
                font-size: 1.3rem;
            }
            
            .comparison-table th:nth-child(2)::after {
                content: '⭐ TOP';
                font-size: 0.55rem;
                padding: 2px 6px;
            }
        }

        /* Accessibility improvements */
        .comparison-table th,
        .comparison-table td {
            position: relative;
        }

        .comparison-table tbody tr:focus-within {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        /* Print styles */
        @media print {
            .comparison-section {
                background: white;
                padding: 20px 0;
            }
            
            .comparison-section::before {
                display: none;
            }
            
            .table-wrapper {
                box-shadow: none;
                border: 2px solid #667eea;
            }
            
            .comparison-table th {
                background: #667eea !important;
                color: white !important;
            }
        }