/* Контакты */
#contact {
    padding: 3rem 0;
    text-align: center;
}

#contact a {
    color: #4CAF50;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Стили для виджета ВКонтакте */
#vk_groups {
  width: 100%;
  max-width: 100vw;
  height: calc(100vh - 150px);
  min-height: 500px;
  overflow: hidden;
}

#vk_groups iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

@media (max-width: 1200px) {
  #vk_groups {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #vk_groups {
    height: 80vh;
    min-height: 400px;
    max-width: 100%;
  }
}

/* Стили для изображений в разделе "Как нас найти" */
.gallery-way {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-way-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-way-item img:hover {
    transform: scale(1.05);
}

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