
        .comparison-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .intro-text, .conclusion-text {
            color: #333;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: justify;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            background: white;
            overflow: hidden;
            border-radius: 8px;
        }
        .specs-table th {
            background: linear-gradient(to bottom, #2c3e50, #34495e);
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 15px 10px;
            position: sticky;
            top: 0;
        }
        .specs-table td {
            padding: 12px 10px;
            text-align: center;
            border-bottom: 1px solid #eaeaea;
        }
        .specs-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .specs-table tr:hover {
            background-color: #e8f4fc;
            transition: background-color 0.2s ease;
        }
        .model-cell {
            font-weight: 600;
            color: #2c3e50;
            background-color: #f1f8ff !important;
        }
        .position-cell {
            font-weight: 500;
            color: #3498db;
        }
        @media (max-width: 768px) {
            .specs-table {
                display: block;
                overflow-x: auto;
            }
            .intro-text, .conclusion-text {
                padding: 0 10px;
            }
        }
    