* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: white;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  border-bottom: 1px solid #dddddd;
  background: white;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 30px;
}

.logo {
  color: #102a43;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 110px 0;
  background: #f4f7fa;
}

.hero .container {
  max-width: 850px;
  margin-left: 5%;
}

.eyebrow {
  margin-bottom: 12px;
  color: #8b1e2d;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #102a43;
  line-height: 1.2;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 12px;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: 1.15rem;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid #102a43;
  background: #102a43;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: white;
  color: #102a43;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: #f4f7fa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px;
  border: 1px solid #dddddd;
  background: white;
}

.site-footer {
  padding: 32px 0;
  background: #102a43;
  color: white;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: white;
}

@media (max-width: 800px) {
  .header-content,
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 80px 0;
  }

  .hero .container {
    width: 90%;
    margin: 0 auto;
  }

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

.policy-page {
  min-height: 70vh;
  padding: 80px 0;
}

.policy-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.policy-page h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.policy-page a {
  color: #8b1e2d;
}