.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  background: rgba(26, 52, 77, 0.97);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(26, 52, 77, 0.25);
  backdrop-filter: blur(8px);
}

.cookie-consent__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.cookie-consent__link {
  color: #90d9f9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__link:hover {
  color: #d6f0fc;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cookie-consent__btn {
  border: 0;
  border-radius: 9999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.cookie-consent__btn--accept {
  background: #90d9f9;
  color: #1a344d;
}

.cookie-consent__btn--accept:hover {
  background: #6ec8eb;
}

.cookie-consent__btn--reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-consent__btn--reject:hover {
  background: rgba(255, 255, 255, 0.08);
}

html.cookie-banner-open body {
  padding-bottom: 7rem;
}

@media (min-width: 768px) {
  html.cookie-banner-open body {
    padding-bottom: 5rem;
  }
}

.privacy-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.privacy-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-page .privacy-updated {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
}

.privacy-page p,
.privacy-page li {
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.privacy-page ul {
  padding-inline-start: 1.25rem;
  margin-bottom: 1rem;
}
