
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin: 20px 0;
        }
        .product-highlight {
            display: flex;
            gap: 30px;
            margin: 40px 0;
            align-items: center;
        }
        .product-image {
            flex: 1;
            min-width: 300px;
            height: 300px;
            object-fit: contain;
        }
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .cta-box {
            background: #003366;
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .product-highlight {
                flex-direction: column;
            }
            .product-image {
                width: 100%;
            }
        }
    