:root {
  --color-bg: #f9f9f9;
  --color-text: #111;
  --color-primary: #007aff;
  --color-accent: #0d72ec;
  --color-nav-bg: #fff;
  --color-footer: #eaeaea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

header {
  background: var(--color-nav-bg);
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background: #eee;
}

nav a.active {
  background: var(--color-primary);
  color: white;
}

main {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: auto;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--color-accent);
}

.btn.small {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn.outline:hover {
  background: var(--color-primary);
  color: white;
}

footer {
  background: var(--color-footer);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
}
