.policy-page {
  padding: 40px 0 64px;
  background:
    linear-gradient(180deg, rgba(242, 101, 34, 0.06), transparent 180px),
    #faf8f5;
  min-height: 60vh;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 16px;
}

.policy-nav__title {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.policy-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-nav__link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.policy-nav__link:hover {
  background: rgba(242, 101, 34, 0.08);
  color: #f26522;
}

.policy-nav__link.is-active {
  background: #f26522;
  color: #fff;
}

.policy-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 36px;
}

.policy-content__title {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
}

.policy-content__body {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.policy-content__body h2,
.policy-content__body h3 {
  margin: 1.6em 0 0.6em;
  color: #111827;
  font-weight: 800;
  line-height: 1.3;
}

.policy-content__body h2 { font-size: 1.25rem; }
.policy-content__body h3 { font-size: 1.1rem; }

.policy-content__body p {
  margin: 0 0 1em;
}

.policy-content__body ul,
.policy-content__body ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.policy-content__body li {
  margin-bottom: 0.35em;
}

.policy-content__body a {
  color: #f26522;
  font-weight: 600;
}

.policy-content__body strong {
  color: #111827;
}

.footer--simple .footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }

  .policy-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .policy-content {
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .policy-nav__list {
    grid-template-columns: 1fr;
  }
}
