:root{
  --max-width: 900px;
  --gap: 16px;
  --bg: #f7f7f8;
  --accent: #2563eb; /* blå, byt om du vill */
}

*{box-sizing: border-box}
body{font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; background:var(--bg); color:#111}
.container{max-width:var(--max-width); margin:0 auto; padding:24px}
.site-header{background:white; box-shadow:0 2px 6px rgba(0,0,0,0.05)}
.site-header nav{display:inline-block; float:right}
.site-header nav a{margin-left:12px; text-decoration:none; color:var(--accent)}
#hero{padding:40px 0}
.site-footer{padding:20px 0; text-align:center; color:#666}
button{background:var(--accent); color:white; border:0; padding:10px 16px; border-radius:8px; cursor:pointer}
