        .pst-comparison-wrapper * {
            box-sizing: border-box;
        }

        .pst-comparison-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: white;
            padding: 40px 20px;
            margin: 20px 0;
        }

        .pst-comparison-wrapper .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 900px;
            width: 100%;
        }

        .pst-comparison-wrapper .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px;
            text-align: center;
            color: white;
        }

        .pst-comparison-wrapper .header h2 {
            font-size: 2em;
            margin-bottom: 10px;
        }

        .pst-comparison-wrapper .header p {
            opacity: 0.9;
            font-size: 1.1em;
        }

        .pst-comparison-wrapper table {
            width: 100%;
            border-collapse: collapse;
        }

        .pst-comparison-wrapper thead {
            background: #f8f9fa;
        }

        .pst-comparison-wrapper th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            color: #2d3748;
            font-size: 1.1em;
            border-bottom: 3px solid #667eea;
        }

        .pst-comparison-wrapper th:first-child {
            width: 35%;
        }

        .pst-comparison-wrapper tbody tr {
            transition: all 0.3s ease;
        }

        .pst-comparison-wrapper tbody tr:hover {
            background: #f7fafc;
            transform: scale(1.01);
        }

        .pst-comparison-wrapper td {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            color: #4a5568;
            font-size: 1em;
        }

        .pst-comparison-wrapper td:first-child {
            font-weight: 600;
            color: #2d3748;
        }

        .pst-comparison-wrapper .highlight {
            background: #d6f5d6;
            color: #2d7738;
            font-weight: 600;
        }

        .pst-comparison-wrapper .standard {
            background: #fff3cd;
            color: #856404;
        }

        .pst-comparison-wrapper tbody tr:last-child td {
            border-bottom: none;
        }

        .pst-comparison-wrapper .icon {
            display: inline-block;
            margin-right: 8px;
        }

        @media (max-width: 768px) {
            .pst-comparison-wrapper .header h2 {
                font-size: 1.5em;
            }

            .pst-comparison-wrapper th,
            .pst-comparison-wrapper td {
                padding: 15px 10px;
                font-size: 0.9em;
            }
        }

