/* Сброс базовых стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Заполнение экрана */
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif; /* Основной текст */
  background: #f5f5f5;
  color: #333;
}

/* Заголовки (Merriweather) */
h1, h2 {
  font-family: 'Merriweather', serif;
  color: #222;
  margin-bottom: 0.5rem;
}

h1 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Основной контейнер, на весь экран */
.card-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  overflow: hidden; /* Запрещаем прокрутку всей страницы */
}

/* Левая колонка (название) */
.left-col {
  flex: 1;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #ccc;
  padding: 1rem;
}

/*
  Средняя колонка:
  - делаем flex-контейнером,
  - вертикально центрируем содержимое (justify-content: center),
  - по горизонтали прижимаем слева (align-items: flex-start).
*/
.center-col {
  flex: 1.3;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Центр по вертикали, пока контента мало */
  align-items: flex-start; /* Прижать к левому краю */
  padding: 2rem 1.5rem;
  overflow-y: auto;        /* Если контента станет слишком много, появится прокрутка */
}

/* Правая колонка (карта) */
.right-col {
  flex: 1;
  position: relative;
  background: #fff;
  border-left: 2px solid #ccc;
  overflow: hidden;
}

/* Контакты */
.contacts {
  margin-bottom: 2rem;
}

.contact-block {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

/* Небольшой класс для SVG-иконок */
.icon {
  display: inline-flex;
  margin-right: 0.5rem;
  flex-shrink: 0;   /* чтобы иконка не сжималась */
}
.whatsapp-ico{
    fill: white;
    width: 16px;
    height: 16px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    bottom: 20px;
    right : 20px;
    z-index: 10;
}


/* Ссылки */
.contact-block a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Адрес */
.address p {
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

/* Дополнительная информация */
.additional-info p {
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Карта (абсолютное позиционирование внутри .right-col) */
.map-script {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Адаптив под планшеты и мобильные */
@media (max-width: 992px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .card-container {
    flex-direction: column;
    height: auto; /* Позволяем странице растягиваться */
  }
  .left-col,
  .center-col,
  .right-col {
    width: 100%;
    flex: unset;
    border: none;
