
        .product-demo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .product-demo img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .product-demo img:hover {
            transform: scale(1.02);
        }

        .key-benefits {
            list-style: none;
            padding-left: 20px;
            margin: 2rem 0;
        }

        .key-benefits li {
            margin-bottom: 1rem;
            padding-left: 15px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%231a73e8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="5 12 9 16 19 8"></polyline></svg>') no-repeat left center;
        }

        .specifications {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }

        .specifications th,
        .specifications td {
            padding: 12px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }

        .specifications th {
            background-color: #f8f9fa;
            font-weight: bold;
        }

        .social-sharing {
            margin-top: 20px;
        }

        .social-sharing a {
            display: inline-block;
            margin-right: 10px;
            text-decoration: none;
        }

        .social-sharing img {
            width: 32px;
            height: 32px;
        }
    