.contacts-page {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  font-family: sans-serif;
  color: #333;
}

.contacts-page h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contacts-page section {
  margin-bottom: 1.5rem;
}

.contacts-page h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #4F9167;
}

.contacts-page p,
.contacts-page a {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
}

.contacts-page a:hover {
  text-decoration: underline;
}

.contacts-page ul {
  list-style: none;
  padding: 0;
}

.contacts-page li {
  margin-bottom: 0.5rem;
}


.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 564px;
  height: 368px;
  background-image: url('/map-placeholder.png');
  /* путь к твоей заглушке */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}