
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f4f4f4;
        }

       .product-container {
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 80%;
            max-width: 800px;
            background-color: #fff;
        }

       .product-des h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
        }

       .product-des h3 {
            color: #555;
            font-size: 20px;
            margin-top: 20px;
            margin-bottom: 5px;
        }

       .product-des p {
            color: #666;
            margin-bottom: 15px;
        }

       .product-img {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

       .product-img img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            object-fit: cover;
        }
    