
        :root {
            --primary: #2B73DA;
            --light-bg: #f5f7fa;
            --border: #ddd;
        }
        
  
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        header {
            padding: 1.5rem 0;
            text-align: center;
            width: 100%;
            border-bottom: 1px solid var(--border);
        }
        
        header h1 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #666;
        }
        
        section {
            padding: 2rem 0;
            width: 100%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .intro {
            text-align: center;
        }
        
        .intro p {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .feature-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 1.5rem;
        }
        
        .feature-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 0.5rem;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
            border: 1px solid var(--border);
        }
        
        .specs-table th, .specs-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        .specs-table th {
            background-color: var(--light-bg);
            font-weight: bold;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .application-card {
            background: white;
            padding: 1.5rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 4px;
        }
        
        .benefit-item {
            text-align: center;
        }
        
        .benefit-value {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0.5rem 0;
            color: var(--primary);
        }
        
        footer {
            background-color: #333;
            color: white;
            padding: 1.5rem 0;
            text-align: center;
            width: 100%;
        }
        
        .cta-section {
            text-align: center;
            background-color: var(--light-bg);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 0.8rem;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
            }
            
            .features-grid, .applications-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .specs-table {
                display: block;
                overflow-x: auto;
            }
        }
    