    .products-section {
            text-align: center;
            padding: 50px 10%;
            background-color: #f9f9f9;
        }
        .section-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
        }
		
        .products-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
		
        .prod-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 100px;
        }
		
        .product {
            background: white;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        .product img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .product h3 {
            margin: 10px 0;
            font-size: 18px;
        }
        .btn {
            background-color: red;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }
        .btn:hover {
            background-color: darkred;
        }
		
		.product img {
			cursor: pointer;
			transition: transform 0.3s ease-in-out;
		}

		.product img:hover {
			transform: scale(1.05); /* Slight zoom effect on hover */
		}
