:root {
  --bg: #000000;
  --card: #07150c;
  --accent: #00b140;
  --accent-dark: #009636;
  --text: #f5fff8;
  --muted: #9ed8b2;
  --line: rgba(0, 177, 64, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(0, 177, 64, 0.12), transparent 28%),
    linear-gradient(180deg, #010301 0%, #000000 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
header {
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(0, 177, 64, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-slogan{
  text-align:center;
  font-size:0.75rem;
  letter-spacing:0.35em;
  color:var(--muted);
  margin-top:4px;
}

.logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 177, 64, 0.35));
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(0, 177, 64, 0.04);
}

.footer-links{
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links button{
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.footer-links a:hover,
.footer-links button:hover{
  color: var(--accent);
}

/* ALGEMENE PAGINA */
main{
  padding:40px 0;
}

h1{color:#baffd0;}
h2{margin-top:25px;color:#baffd0;}

p, li{
  color:#9ed8b2;
  line-height:1.7;
}

ul{padding-left:20px;}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}