  .gif-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
  }
  .gif-container img {
    max-width: 48%;
    height: auto;
    border-radius: 8px;
  }

  a.green-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #20e80e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

a.green-btn:hover {
  background: #1bb50c; /* чуть темнее зелёный */
}

.map-container {
  width: 100vw; /* 100% от ширины окна */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;  /* вытягивает за пределы родителя */
  margin-right: -50vw;
  height: 600px; /* для ПК */
}

  /* Для мобильных устройств */
  @media (max-width: 768px) {
    .gif-container img {
      max-width: 100%;
    }
        .map-container {
    height: 450px; /* например, для мобильных */
  }
  }