:root {
  --primary: #173b57;
  --primary-hover: #214f72;
  --primary-active: #102f47;
  --accent: #3c8dbc;
  --surface: #ffffff;
  --background: #eef2f5;
  --soft-background: #f7fafc;
  --text-primary: #1f2933;
  --text-secondary: #62717d;
  --border: #d9e0e6;
  --warning: #b94a48;
  --shadow: 0 12px 30px rgba(15, 45, 67, 0.12);
  --focus-ring: 0 0 0 3px rgba(60, 141, 188, 0.42);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family:
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: #176b94;
  font-weight: 650;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #104a67;
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.page {
  min-height: 100vh;
  padding: 32px;
}

.content {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.hero-logo {
  display: grid;
  justify-self: end;
  place-items: center;
}

.hero-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.contact {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(15, 45, 67, 0.07);
}

.contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.3;
}

.contact p {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .page {
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 14px;
  }

  .hero,
  .contact {
    padding: 18px;
  }
}
