:root {
  --bg-color: #f4f4f4;
  --text-color: #333;
  --accent-color: #007acc;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background-color: var(--accent-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.dark-theme {
  --bg-color: #1e1e1e;
  --text-color: #f4f4f4;
  --accent-color: #ff9800;
}
