.cookie-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}

.cookie-hero-content {
  max-width: 720px;
  text-align: left;
}

.cookie-title {
  margin-bottom: var(--space-4);
}

.cookie-intro {
  font-size: var(--font-size-lg);
}

.cookie-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-4);
}

.cookie-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.cookie-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-primary-strong), transparent);
  box-shadow: 0 0 12px rgba(216, 176, 102, 0.6);
}

.cookie-contact-cta {
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .cookie-hero-content {
    text-align: left;
  }
}
