.gallery-section {
    text-align: center;
    padding: 40px;
    background: var(--secondary-color);
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    row-gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}