
  #cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    width: 450px;
    font-family: sans-serif;
    z-index: 1000;
  }
  #cookie-consent h2{
    font-size: 24px;
  }
  #cookie-consent label{
    margin-top: 10px;
  }
  .cookie-links {
    margin-top: 20px;
  }
  .cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }
  .btn {
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    flex: 1;
  }
  .purple { background:#216ba8; color:#fff; }
  .grey { background:#e5e7eb; }
  .light { background:#f3f4f6; }
  @media(max-width: 500px){
    #cookie-consent {
      width: 100%;
      right: 0;
      bottom: 0;
      border-radius: 0;
    }
  }