 .cookie-popup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    display: none;
  }

  .cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  .cookie-buttons button {
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }

  .btn-accept {
    background: #4caf50;
    color: #fff;
  }

  .btn-decline {
    background: #f44336;
    color: #fff;
  }

  .cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
}

.cookie-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.cookie-more {
  color:#ffffff;
  text-decoration: underline;
}

  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }