#legal-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  color: #333;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}
#legal-banner button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1em;
}
@media (max-width: 768px) {
  #legal-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  #legal-banner button {
    margin-top: 10px;
    align-self: stretch;
  }
}