:root {
  --accent: #cdddae;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Header */

.header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 12px;
}

.headerText h1 {
  margin: 0;
  font-size: 28px;
}

.subtitle {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  margin-top: 8px;
  font-size: 13px;
  color: #374151;
}

a { color: inherit; }

/* Callout */

.callout {
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 16px;
}

.callout h2 {
  margin: 0;
  font-size: 22px;
}

.callout p {
  margin-top: 8px;
  color: #374151;
}

/* Sections */

section h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--accent);
}

ul, ol {
  padding-left: 18px;
  margin: 0;
  color: #374151;
}

li {
  margin: 6px 0;
}

/* CTA */

.cta {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.ctaTitle {
  margin-bottom: 12px;
  font-weight: 600;
}

.ctaButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--text);
  color: #fff;
}

.outline {
  border: 1px solid var(--border);
}

.fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
