.product-gallery {
    padding: 50px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.product-gallery h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #222;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gallery-item {
    width: 280px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.gallery-item p {
    padding: 12px;
    font-size: 16px;
    color: #444;
}
