
           
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #2B73DA;
            margin-bottom: 50px;
        }
        
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .usp-section {
            display: flex;
            flex-direction: column;
        }
        
        .usp-title {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2B73DA;
        }
        
        .usp-items {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .usp-item {
            display: flex;
            align-items: flex-start;
        }
        
        .usp-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(43, 115, 218, 0.1);
            color: #2B73DA;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .usp-content {
            flex: 1;
        }
        
        .usp-item-title {
            font-size: 20px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .usp-item-desc {
            color: #666;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .usp-stats {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .stat {
            background: #f1f7ff;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: 600;
            color: #2B73DA;
            font-size: 18px;
        }
        
        .specs-section {
            display: flex;
            flex-direction: column;
        }
        
        .specs-title {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2B73DA;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .specs-table tr:hover {
            background-color: #f1f7ff;
        }
        
        .specs-table th {
            background-color: #2B73DA;
            color: white;
            text-align: left;
            padding: 15px 20px;
            font-weight: 600;
            font-size: 18px;
        }
        
        .specs-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 18px;
        }
        
        .specs-param {
            font-weight: 600;
            color: #2d3748;
            width: 40%;
        }
        
        .specs-value {
            color: #4a5568;
        }
        
        .highlight {
            color: #2B73DA;
            font-weight: 600;
        }
        
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .usp-section, .specs-section {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .wide {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .usp-title, .specs-title {
                font-size: 22px;
            }
            
            .usp-item {
                flex-direction: column;
                text-align: center;
            }
            
            .usp-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .usp-stats {
                justify-content: center;
            }
            
            .specs-table th, .specs-table td {
                padding: 12px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }
            
            .usp-title, .specs-title {
                font-size: 20px;
            }
            
            .usp-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .usp-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .specs-table {
                display: block;
                overflow-x: auto;
            }
        }
    