.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 2px solid #b71220;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  max-width: 600px;
  font-family: 'Lato', sans-serif;
  color: #333;
  z-index: 9999;
  animation: fadeInUp 0.5s ease;
}
.cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 1.5;
}
.cookie-buttons {
  text-align: right;
}
.cookie-buttons button {
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.accept-btn {
  background-color: #b71220;
  color: #fff;
}
.accept-btn:hover {
  background-color: #8e0f17;
}
.decline-btn {
  background-color: #f2f2f2;
  color: #333;
  border: 1px solid #ccc;
}
.decline-btn:hover {
  background-color: #e6e6e6;
}
@keyframes fadeInUp {
  from {opacity:0; transform: translate(-50%, 50px);}
  to {opacity:1; transform: translate(-50%,0);}
}