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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1c1c1e;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
header {
  background: #17274d;
  padding: 18px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.brand span {
  font-weight: 400;
  opacity: 0.65;
  font-size: 13px;
  margin-left: 8px;
}

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

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
}

nav a:hover { color: #fff; }

/* ── Main ───────────────────────────────────────────────────────────────── */
main { flex: 1; padding: 52px 0 72px; }

/* Hero — home page only */
.hero {
  padding-bottom: 48px;
  border-bottom: 1px solid #e6e8ef;
  margin-bottom: 52px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #17274d;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  color: #4a4f6b;
  max-width: 620px;
  margin-bottom: 0;
}

/* Body copy */
.body-copy p {
  color: #333;
  margin-bottom: 18px;
  max-width: 680px;
}

/* Value points */
.values {
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: #17274d;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.value-item p {
  color: #333;
  margin: 0;
}

.value-item strong { color: #17274d; }

/* Content pages — Privacy, Terms, Contact */
.page-header {
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e8ef;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #17274d;
  margin-bottom: 6px;
}

.page-date {
  font-size: 14px;
  color: #888;
}

h2 {
  font-size: 17px;
  font-weight: 600;
  color: #17274d;
  margin: 36px 0 10px;
}

p { margin-bottom: 14px; color: #333; }

ul { margin: 0 0 18px 20px; }
ul li { margin-bottom: 8px; color: #333; }

a { color: #1a59b0; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Highlight box — for the critical SMS clause */
.highlight-box {
  background: #f2f4fa;
  border-left: 4px solid #17274d;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
  color: #17274d;
}

/* Contact card */
.contact-card {
  background: #f7f8fb;
  border: 1px solid #dde0ed;
  border-radius: 10px;
  padding: 36px 32px;
  margin-top: 12px;
}

.contact-card h2 { margin-top: 0; }
.contact-card p { margin-bottom: 10px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: #17274d;
  padding: 22px 0;
  margin-top: auto;
}

footer p {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-align: center;
  margin: 0;
  line-height: 1.8;
}

footer a { color: rgba(255,255,255,0.85); }
footer a:hover { color: #fff; text-decoration: underline; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 16px; }
  header .container { flex-direction: column; align-items: flex-start; }
  .contact-card { padding: 24px 20px; }
}
