    #privacy-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      z-index: 99999999;
    }

    #privacy-modal {
      background: #fff;
      padding: 30px;
      border-radius: 7px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      max-width: 600px;
      width: 95%;
      margin: 0 0 10px 0;
      text-align: center;
      font-family: "Assistant", arial !important;
    }

    #privacy-modal h2 {
      margin-top: 0;
    }

    #privacy-modal p {
      line-height: 1.8;
    }

    .privacy-link {
      color: #000000;
      text-decoration: underline !important;
      font-weight: 500;
      font-family: "Assistant", arial !important;
    }

    .btn-accept {
      background: #000000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 3px;
      cursor: pointer;
      font-size: 15px;
    }

    .btn-accept:hover {
      background: #222222;
    }