
.cookie-page {
  display: grid;
  gap: 18px;
}

.cookie-page p {
  line-height: 1.72;
  margin: 0 0 12px;
}

.cookie-page p:last-child {
  margin-bottom: 0;
}

.cookie-intro,
.cookie-card,
.cookie-section {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  padding: 22px;
}

.cookie-intro {
  font-size: 1.04rem;
}

.cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cookie-card h3,
.cookie-section h3 {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.cookie-types {
  display: grid;
  gap: 14px;
}

.cookie-type {
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.035);
}

.cookie-type strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.02rem;
}

.cookie-highlight {
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.95), rgba(255, 255, 255, 0.98));
}

.cookie-note {
  display: grid;
  gap: 10px;
}

.cookie-link {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  transition: transform .18s ease, background .18s ease;
}

.cookie-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 760px) {
  .cookie-grid {
    grid-template-columns: 1fr;
  }

  .cookie-intro,
  .cookie-card,
  .cookie-section {
    border-radius: 16px;
    padding: 18px;
  }
}
