  /* ... (your CSS styles) ... */
    .cookie-message {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      max-width: 500px;
      background-color: #f9f9f9;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      font-family: Arial, sans-serif;
      z-index: 9999;
    }
    .cookie-message-text {
      margin: 0;
      margin-bottom: 10px;
    }
    .cookie-link {
      color: #007bff;
      text-decoration: underline;
    }
    .cookie-button {
      background-color: #007bff;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-family: Arial, sans-serif;
    }
