:root {
  --blue: #1e88e5;
  --blue-200: #90caf9;
  --blue-50: #e3f2fd;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #475569;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--blue-50);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-header, .site-footer {
  background: var(--white);
  border-bottom: 1px solid var(--blue-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header .logo {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  margin-right: 32px;
  line-height: 1.2;
}
.logo-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
  margin-top: 2px;
}
.site-header nav a { color: var(--muted); margin-right: 16px; text-decoration: none; }
.site-header nav a:hover { color: var(--blue); }

.hero {
  background: linear-gradient(90deg, var(--white), var(--blue-50));
  border: 1px solid var(--blue-200);
  border-radius: 8px;
  padding: 24px;
  margin: 16px 0;
}

button, .btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
button:hover, .btn:hover { filter: brightness(0.95); }

/* Footer */
.site-footer { border-top: 1px solid var(--blue-200); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-links a + a::before { content: "·"; color: var(--muted); margin: 0 12px; opacity: 0.5; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--blue-200);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08); z-index: 1000; padding: 12px 0;
}
.cookie-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 13px; color: var(--muted); flex: 1; }
.cookie-inner a { color: var(--blue); }
.btn-sm { padding: 6px 16px; font-size: 13px; white-space: nowrap; }

/* Legal pages */
.legal-page { max-width: 800px; margin: 24px auto; padding: 32px; background: var(--white); border-radius: 8px; border: 1px solid var(--blue-200); }
.legal-page h1 { font-size: 24px; margin: 0 0 4px; color: var(--text); }
.legal-updated { font-size: 13px; color: var(--muted); margin: 0 0 24px; }
.legal-page h2 { font-size: 16px; margin: 24px 0 8px; color: var(--text); }
.legal-page p { font-size: 14px; line-height: 1.6; color: var(--text); margin: 0 0 8px; }
.legal-page ul { margin: 0 0 8px; padding-left: 20px; }
.legal-page li { font-size: 14px; line-height: 1.6; margin-bottom: 4px; }
.legal-page a { color: var(--blue); }

/* Consent checkbox */
.consent-group { margin-top: 16px; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; line-height: 1.4; }
.consent-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.consent-label a { color: var(--blue); }
