:root {
  --color-primary: #0f766e;
  --color-secondary: #f59e0b;
  --color-bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 80vh;
}
