.gallery {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.gallery h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(480px, 2fr));
    gap: 20px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    display: block;
}
h1 {
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
/* Адаптивность */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .gallery h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        padding: 10px;
    }
}