:root {
  --petrol: #394f48;
  --mint: #8fc6bd;
  --bg: #f5f8f7;
  --text: #14201e;
  --muted: #546a66;
  --neon: #f9ff08;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Inter, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
header {
  background: var(--petrol);
  color: #fff;
  padding: 18px 0;
  border-bottom: 3px solid var(--neon);
}
header .container,
main .container,
footer .container {
  width: min(920px, 92%);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}
.brand span {
  font-weight: 600;
}
nav a {
  color: #fff;
  margin-right: 12px;
  font-weight: 600;
  text-decoration: none;
}
main {
  padding: 32px 0 48px;
}
main h1 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--petrol);
  margin-bottom: 10px;
}
section {
  background: #fff;
  border: 1px solid #dbe6e3;
  border-radius: 18px;
  padding: 22px;
  margin-top: 18px;
}
section h2 {
  margin-top: 0;
  color: #1f2a2a;
}
ul {
  padding-left: 20px;
}
.legal-meta {
  color: var(--muted);
  font-size: 14px;
}
footer {
  background: #1f2a2a;
  color: rgba(255, 255, 255, 0.8);
  padding: 22px 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  background: #fff;
  border: 1px solid #cfe0dc;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(17, 32, 28, 0.18);
  display: none;
  gap: 12px;
}
.cookie-banner.is-visible {
  display: grid;
}
.cookie-banner p {
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1 1 160px;
  border-radius: 10px;
  border: 2px solid var(--mint);
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: var(--petrol);
}
.cookie-actions button.accept {
  background: var(--mint);
  color: #0e1b1a;
}
.cookie-manage {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  margin-top: 10px;
  cursor: pointer;
}
.cookie-manage:hover {
  color: var(--mint);
  border-color: var(--mint);
}
@media (max-width: 600px) {
  nav {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
}
