#fw-section-custom-html-98c95f12-f2da-40ef-8dbe-f2bfd8e54420 {

        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
        }

        .product-box {
            width: 200px;
            height: 200px;
            border-radius: 2%;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .product-image {
            width: 80px;
            height: 80px;
            border-radius: 2%;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 18px;
            margin: 5px 0;
        }

        .product-description {
            font-size: 14px;
            color: #666;
            margin: 5px 0;
        }

        .product-price {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 5px 0;
        }
  
}