.policy-content h2 {
  scroll-margin-top: 100px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 var(--space-2);
  color: var(--color-text-muted);
}

.policy-content section {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.policy-content section:nth-child(1) { animation-delay: 0.1s; }
.policy-content section:nth-child(2) { animation-delay: 0.15s; }
.policy-content section:nth-child(3) { animation-delay: 0.2s; }
.policy-content section:nth-child(4) { animation-delay: 0.25s; }
.policy-content section:nth-child(5) { animation-delay: 0.3s; }
.policy-content section:nth-child(6) { animation-delay: 0.35s; }
.policy-content section:nth-child(7) { animation-delay: 0.4s; }
.policy-content section:nth-child(8) { animation-delay: 0.45s; }
.policy-content section:nth-child(9) { animation-delay: 0.5s; }
.policy-content section:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .policy-hero {
    padding: var(--space-10) 0 !important;
  }
  
  .policy-hero h1 {
    font-size: var(--text-3xl) !important;
  }
  
  .policy-content {
    padding: 0 var(--space-4);
  }
}

.policy-footer nav a {
  transition: color var(--duration-fast) var(--ease-out);
}

.policy-footer nav a:hover {
  color: var(--color-primary-hover);
}

@media print {
  .policy-content {
    max-width: 100% !important;
  }
  
  .policy-content section {
    opacity: 1 !important;
    animation: none !important;
    page-break-inside: avoid;
  }
}