* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #172033;
  background: #f7f8fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 8vw;
  color: #fff;
  background:
    linear-gradient(rgba(12, 31, 63, 0.72), rgba(12, 31, 63, 0.68)),
    url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.actions a {
  min-width: 126px;
  padding: 13px 20px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  color: #0f2a4d;
  background: #fff;
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 8vw 60px;
}

article {
  background: #fff;
  border: 1px solid #e5e9f1;
  border-radius: 8px;
  padding: 26px;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

article p {
  margin: 0;
  color: #526071;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 72vh;
    padding: 46px 24px;
  }

  h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
  }

  .content {
    grid-template-columns: 1fr;
    padding: 28px 24px 42px;
  }
}
