:root{
  --yellow:#fed12f;
  --green:#55bb5d;
  --dark:#111;
  --muted:#6b7280;
  --bg:#fff;
  --soft:#f7f7f7;
  --radius:14px;
  --container:1100px;
  --header-height:72px;
}

*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--dark);
  background:var(--bg);
  line-height:1.6;
}

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding:1rem;
}
