/* Базовый сброс отступов */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Общие настройки страницы */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #1f2933;
  line-height: 1.6;
}

/* Центрирующий контейнер */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Шапка с синим акцентом */
.header {
  background: #ffffff;
  border-bottom: 3px solid #1b5fb0;
  padding: 40px 0 28px;
}

.brand {
  font-size: 32px;
  font-weight: 700;
  color: #1b5fb0;
}

.tagline {
  margin-top: 8px;
  font-size: 17px;
  color: #52606d;
}

/* Смысловые секции */
.section {
  padding: 28px 0;
  border-bottom: 1px solid #e4e7eb;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 12px;
}

.text {
  font-size: 16px;
  color: #3e4c59;
}

/* Список услуг */
.services {
  list-style: none;
}

.services li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #3e4c59;
}

/* Синяя маркер-точка перед пунктом */
.services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b5fb0;
}

/* Контактный блок — отдельная светлая карточка */
.contacts-card {
  font-style: normal;
  font-size: 16px;
  color: #3e4c59;
  background: #f5f8fc;
  border: 1px solid #e1e8f0;
  border-left: 3px solid #1b5fb0;
  border-radius: 8px;
  padding: 20px 22px;
}

.contacts-row {
  margin-bottom: 10px;
}

.contacts-row:last-child {
  margin-bottom: 0;
}

/* Подпись слева в строке контакта */
.contacts-label {
  display: inline-block;
  min-width: 120px;
  font-weight: 600;
  color: #1f2933;
}

.phone {
  color: #1b5fb0;
  text-decoration: none;
  font-weight: 600;
}

.phone:hover {
  text-decoration: underline;
}

/* Дополнительный воздух в самом низу контента */
main.container {
  padding-bottom: 48px;
}

/* Подвал — небольшой серый текст */
.footer {
  padding: 20px 0 32px;
  text-align: center;
  font-size: 13px;
  color: #9aa5b1;
}

/* Адаптация под телефон */
@media (max-width: 480px) {
  .header {
    padding: 28px 0 20px;
  }

  .brand {
    font-size: 26px;
  }

  .tagline {
    font-size: 15px;
  }

  .section-title {
    font-size: 18px;
  }

  /* На телефоне подпись и значение в столбик */
  .contacts-label {
    display: block;
    min-width: 0;
    margin-bottom: 2px;
  }

  .contacts-card {
    padding: 16px 18px;
  }
}
