* {
    margin: 0;
  }
  
  body {
    font-family: "Roboto", sans-serif;
  }
  
  p {
    margin: 24px 0;
    line-height: 2;
  }
  
  .wrapper {
    padding: 32px;
  }
  
  .cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #222;
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 16px;
  }
  .cookie-banner a {
    color: #4fc3f7;
    text-decoration: underline;
    margin: 0 8px;
  }
  .cookie-btn {
    margin-left: 16px;
    background: #4fc3f7;
    color: #222;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  .cookie-banner.hide {
    display: none;
  }