  .cookie-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .cookie-title svg {
    flex-shrink: 0;
    color: #f5a623;
    /* optional: cookie color */
  }

  .policy-text {
    color: #dddddd;
  }

  .consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
  }

  .consent-title {
    color: #ffffff;
  }

  .consent-intro {
    color: #ffffff;
  }

  .consent-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  .consent-btn-accept {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
  }

  .consent-btn-reject {
    color: #fff;
    background-color: #a70000;
    border-color: #890202;
  }

  .consent-btn-preferences {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
  }

  .consent-content {
    background: #0e2b4c;
    padding: 25px 30px;
    border-radius: 8px;
    border-color: #1b3f69;
    max-width: 600px;
    width: 90%;
    text-align: left;
    border-style: dotted;
  }

  .consent-options {
    margin: 20px 20px 40px 0px;
    font-size: 15px;
  }

  .consent-options label {
    display: block;
    margin-bottom: 8px;
    color: #ffedd0;
  }

  .consent-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #007bff;
    /* Optional: tick color */
    margin-right: 8px;
  }

  .consent-buttons {
    text-align: center;
    margin-top: 20px;
  }

  .consent-buttons .consent-btn {
    margin: 0 10px;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0e2b4c;
    color: #ffffff;
    text-align: center;
    padding: 16px 10px;
    z-index: 9998;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  }

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

  .cookie-banner .consent-btn {
    margin: 0 5px;
  }

  .consent-fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
  }