#policy-notice-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 90%;
  max-width: 400px;
  background-color: #f9f9f9;
  color: #333;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
#policy-notice-box button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
@media(min-width: 768px) {
  #policy-notice-box {
    width: 30%;
  }
}
