.product-gallery {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.section-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.section-title a:hover {
    color: #007bff;
}

.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: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding-bottom: 15px;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item a img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

.gallery-item h2 {
    font-size: 18px;
    margin: 10px 0 0;
}

.gallery-item h2 a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.gallery-item h2 a:hover {
    color: #007bff;
}
