.cookie-hero {
  padding: 170px 0 110px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.75)),
    url("../img/cookies/cookie-hero.jpg") no-repeat;
  background-size: 120%;
  background-position: right center;
  color: var(--white);
}

.cookie-hero-content {
  max-width: 780px;
}

.cookie-hero-content h1 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.cookie-hero-content p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.policy-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.policy-meta {
  position: sticky;
  top: 120px;
}

.policy-meta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.policy-meta-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.policy-meta-card p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.policy-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 32px;
  box-shadow: var(--shadow);
}

.policy-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.policy-section p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 14px;
}

.policy-list {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-list li {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.8;
}

.policy-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .cookie-hero-content h1 {
    font-size: 46px;
  }

  .policy-wrap {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 991px) {
  .cookie-hero {
    padding: 150px 0 90px;
  }

  .policy-wrap {
    grid-template-columns: 1fr;
  }

  .policy-meta {
    position: static;
  }
}

@media (max-width: 767px) {
  .cookie-hero-content h1 {
    font-size: 36px;
  }

  .cookie-hero-content p {
    font-size: 16px;
  }

  .policy-content,
  .policy-meta-card {
    padding: 24px 20px;
  }

  .policy-section h2 {
    font-size: 22px;
  }
}