#privacy-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1000;
  border-top: 1px solid #ccc;
}
#privacy-consent a {
  color: #1e90ff;
  text-decoration: none;
}
#privacy-consent .close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
@media(min-width: 576px) {
  #privacy-consent {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}