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

body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
}

header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header img {
  height: 38px;
  width: auto;
}

main {
  max-width: 760px;
  margin: 56px auto;
  padding: 0 24px 100px;
  flex: 1;
}

.page-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--teal);
}

h1 {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.meta {
  color: var(--muted);
  font-size: 0.875rem;
}

h2 {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #3a4350;
  font-size: 0.95rem;
}
a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  color: var(--teal);
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px;
  font-size: 0.8rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.15s;
}
footer a:hover {
  color: #fff;
}
.footer-links {
  margin-bottom: 8px;
}
