<style>
  .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f7f7f7;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .cookie-banner p {
    margin: 0 0 10px;
    font-size: 14px;
  }

  .cookie-banner button {
    margin: 0 5px;
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
  }

  .cookie-banner button:hover {
    background: #0056b3;
  }
</style>