/* О нас */
#about {
    background-color: #f9f9f9;
    padding: 3rem 0;
    text-align: center;
}

#images {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

#gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.gallery-about {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}



.gallery-about-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-about-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-about {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
