  /* pdpa */
  /* Cookie Consent Banner */
  .cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgb(51 51 51 / 79%);
      padding: 15px;
      color: #fff;
      text-align: center;
      z-index: 9999;
  }

  .cookie-consent p {
      margin: 0;
  }

  .cookie-consent .cookie-consent-btn {
      display: inline-block;
      margin: 0 10px;
      padding: 8px 15px;
      background-color: #f39c12;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s;
  }

  .cookie-consent .cookie-consent-btn:hover {
      background-color: #e67e22;
  }

  /* Close Button */
  .cookie-consent-close {
      position: absolute;
      top: 5px;
      right: 10px;
      font-size: 20px;
      color: #fff;
      cursor: pointer;
  }