* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #2389c9;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 80px;
  text-align: center;
  background:
    linear-gradient(rgba(116, 182, 223, 0.86), rgba(35, 137, 201, 0.92)),
    url("images/background.jpg") center center / cover no-repeat;
}

.content {
  width: 100%;
  max-width: 980px;
}

.logo {
  display: inline-block;
  margin-bottom: 34px;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: 999px;
}

.logo img {
  display: block;
  width: 170px;
  max-width: 100%;
}

h1 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 400;
}

.intro {
  max-width: 900px;
  margin: 0 auto 42px;
  font-size: 17px;
  line-height: 1.6;
}

.contact {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

.contact p {
  margin: 0 0 24px;
}

.pin {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translateY(2px);
}

.pin::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 3px;
  left: 3px;
  background: #ffffff;
  border-radius: 50%;
}

.contact-line {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.text-icon {
  display: inline-block;
  width: 22px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  text-align: center;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 28px;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .page {
    padding: 32px 16px;
  }

  .logo {
    margin-bottom: 28px;
  }

  .logo img {
    width: 140px;
  }

  h1 {
    font-size: 30px;
  }

  .intro,
  .contact {
    font-size: 15px;
  }

  .contact-line {
    gap: 10px;
  }

  .contact-item {
    justify-content: center;
    width: 100%;
  }
}
