
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .hero-image {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.02);
        }

        .key-features {
            list-style: none;
            padding-left: 20px;
            margin: 2rem 0;
        }

        .key-features 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;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }

        .spec-table th,
        .spec-table td {
            padding: 12px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }

        .spec-table th {
            background-color: #f8f9fa;
            font-weight: bold;
        }
    