@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7fbff;
  --text: #0f172a;
  --muted: #334155;
  --card: #ffffff;
  --border: #e2e8f0;
  --accent: #4aa3ff;
  --accent-strong: #1d7ed6;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 0;
}

a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header, .site-footer {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.site-footer { border-top: 1px solid var(--border); border-bottom: none; }

.logo { font-weight: 700; color: var(--accent-strong); font-size: 1.1rem; }

.top-nav a { margin-right: 14px; font-weight: 600; }

.hero { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; padding: 32px 24px; }
.hero h1 { margin-top: 0; }
.lead { font-size: 1.05rem; color: var(--muted); }
.meta { color: var(--muted); }

.grid.two-column { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; padding: 0 24px 32px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.card { background: var(--card); border: 1px solid var(--border); padding: 14px; border-radius: 10px; }

.faq-side { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.faq-item { margin-bottom: 12px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.faq-item:last-child { border-bottom: none; }

ul { padding-left: 18px; }

.site-footer .footer-links a { margin-right: 12px; font-size: 0.95rem; }

@media (max-width: 960px) {
  .hero, .grid.two-column { grid-template-columns: 1fr; }
}

