:root {
  --accent1: #d0f18f;
  --accent2: #a5c8e8;
}

/* Fonts & Basis */
body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: #0f172a; /* slate-900 */
  background-color: #fff;
  line-height: 1.6;
}

/* Buttons */
button, .btn {
  border-radius: 0.75rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  z-index: 50;
}
.cookie-banner p {
  margin: 0;
  color: #475569;
}
.cookie-banner button {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
}
.cookie-banner button.decline {
  background: #fff;
  border-color: #e5e7eb;
  color: #475569;
}

