
  .cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #232323;
    color: #ffffff;
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    font-family: sans-serif;
  }
  .cookie-banner-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .cookie-banner-content p { margin: 0; font-size: 14px; line-height: 1.5; }
  .cookie-banner-content a { color: #4db2ec; text-decoration: underline; }
  .cookie-banner-buttons { display: flex; gap: 10px; }
  .cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
  }
  .cookie-btn-decline { background-color: #4a4a4a; color: #ffffff; }
  .cookie-btn-decline:hover { background-color: #606060; }
  .cookie-btn-accept { background-color: #3c8fde; color: #ffffff; }
  .cookie-btn-accept:hover { background-color: #2a7ac7; }
  @media (max-width: 768px) {
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner-buttons { margin-top: 15px; }
  }
