* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #2c3e50;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero */

.hero {
  text-align: center;
  max-width: 1440px;
  padding: 48px 24px;
}

.hero__logo-img {
  width: 300px;
  max-width: 736px;
  height: auto;
  margin-bottom: 32px;
}

.hero__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a3a5c;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #1d3057;
  margin-bottom: 40px;
}

.hero__notice-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 12px;
}

.hero__notice {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1d3057;
  margin-bottom: 32px;
}

.hero__address {
  font-size: 1rem;
  margin-bottom: 32px;
}

.hero__address-link {
  color: #1d3057;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.hero__address-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1d3057;
  transition: width 0.3s ease;
}

.hero__address-link:hover::before {
  width: 100%;
}

/* Contacts */

.contacts {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.contacts__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1d3057;
}

.contacts__link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3057;
  text-decoration: none;
  position: relative;
}

.contacts__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1d3057;
  transition: width 0.3s ease;
}

.contacts__link:hover::before {
  width: 100%;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 12px;
  }
}

@media (max-width: 400px) {
  .contacts {
    flex-direction: column;
    align-items: center;
  }

  .contacts__item {
    align-items: center;
  }
}
