
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: auto;
      background-color: #1E2730;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .cookie-text {
      max-width: 80%;
      line-height: 1.5;
    }

    .cookie-link {
      color: #e7b400;
      text-decoration: none;
      font-weight: bold;
    }

    .cookie-link:hover {
      text-decoration: underline;
    }

    .accept-btn {
      background-color: #e7b400;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .accept-btn:hover {
      background-color: #d0a000;
    }


@media (max-width: 768px) {
  .cookie-banner {
    width: 90%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    bottom: 20px
  }

  .accept-btn {
    margin-top: 10px;
    width: 100%;
  }
}
