*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --lobbie-blue: #45aaf2;
  --text-color: #1c1c1c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-color);
  background: #f6f7fb;
  line-height: 1.6;
}

.site-header {
  background: var(--lobbie-blue);
  padding: 18px 16px;
}

.site-footer {
  background: var(--lobbie-blue);
  padding: 18px 16px;
  margin-top: 48px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.content {
  max-width: 920px;
  margin: 32px auto 80px;
  padding: 0 20px;
}

h1 {
  text-align: center;
  margin: 0 0 28px;
  font-size: 28px;
  letter-spacing: 0.4px;
}

h2 {
  margin: 32px 0 12px;
  font-size: 20px;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }
}
