#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4B317C;
  color: #ffffff;
  padding: 20px;
  z-index: 99;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-content img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.cookie-content p {
  font-size: 14px;
  text-align: center;
}

.cookie-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.cookie-btn {
  background: #5a3e8e;
  color: #C9CFFA;
  height: 30px;
  border: 1px solid transparent;
}
.accept-btn {
  background: #C9CFFA;
  color: #5F1F81;
}
.cookie-btn:hover,
.cookie-btn:focus {
  color: #AA38E7;
  background: #C9CFFA;
  border: 1px solid #AA38E7;
}

.cookie-content a {
  color: #C9CFFA;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #AA38E7;
}

.cookie-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 600px) {
  .cookie-container {
    flex-direction: row; 
    gap: 20px;
  }
  .cookie-container p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .btn.cookie-btn {
    font-size: 16px;
    padding: 4px 20px;
    line-height: 20px;
  }
  .cookie-container {
    gap: 40px;
    justify-content: space-between;
  }
  .cookie-btns {
    gap: 20px;
  }
}
