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

body {
  background: #fafafa;
  color: #000;
  font-family: "Poppins", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

h1 {
  font-family: "Lexend", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 72px;
}

.row {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
  color: #86878a;
}

.row b { color: #000; font-weight: 400; }

.icon { flex-shrink: 0; margin-top: 1px; color: #000; }

.contact {
  display: flex;
  gap: 26px;
  align-items: center;
  background: #f1f1f2;
  border-radius: 8px;
  padding: 28px 26px;
  margin-top: 72px;
  color: #86878a;
}

.contact a {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact a:hover { text-decoration: underline; }
.contact a .icon { margin: 0; width: 20px; height: 20px; }

footer {
  font-family: "Lexend Exa", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  text-align: center;
  margin-top: 88px;
}

a { color: inherit; }
