.contacts-page {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.contacts-container {
  max-width: 900px;
  margin: auto;
}

.contacts-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #003366;
}

.contact-card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-card h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #0055a5;
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  margin-bottom: 10px;
}

.contact-card a {
  color: #002855; /* тёмно-синий */
  text-decoration: none;
  font-weight: bold;
  display: inline-block; /* чтобы работала анимация scale */
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.contact-card a:hover {
  color: #001a40; /* ещё темнее при наведении */
  transform: scale(1.05); /* лёгкое «выдвижение» вперёд */
  text-shadow: 0 2px 6px rgba(0, 40, 85, 0.4);
}
.map-container {
  width: 100%;
  max-width: 1200px; /* ограничение ширины, если нужно */
  margin: 40px auto; /* центрируем */
  border-radius: 12px;
  overflow: hidden; /* скруглим углы */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe,
.map-container script {
  width: 100% !important;
  display: block;
}