.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 760px;
  margin: 0 auto;
  background: #e7e8eb;
  color: #000000;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: none;
}

.cookie-consent-inner h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
}

.cookie-consent-inner p {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent a {
  color: #4990ee;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

#accept-cookies {
  background: #4990ee;
  color: #ffffff;
  font-weight: 600;
}

#decline-cookies {
  background: #4990ee;
  color: #ffffff;
}