.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-buttons button {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
}

#accept-cookies {
  background: #00c853;
  color: #fff;
}

#reject-cookies {
  background: #333;
  color: #fff;
}

.cookie-content a {
  color: #00c853;
  text-decoration: underline;
}

@media(max-width:768px){
  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }
}
