#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  z-index: 9999;
  padding: 18px 0;
  text-align: center;
  font-size: 1em;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
#cookie-banner .cookie-content {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#cookie-banner button {
  background: #2caf7d;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 24px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 5px;
}
#cookie-banner a {
  color: #6dd3bd;
  text-decoration: underline;
}
