/* Product Section */
#product {
    background-color: #24292f; /* Background color for the Product section */
    color: white; /* Text color */
    display: flex; /* Use flexbox for horizontal centering */
    flex-direction: column; /* Arrange items in a column */
    align-items: center; /* Center items horizontally */
    padding: 80px 20px; /* Add padding at the top and sides */
    min-height: 100vh; /* Full viewport height */
}
.product-hover img {
    transition: transform 0.3s ease, filter 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.product-hover:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}