/* Policy Page Animations */
/* Staggered fade-in animation for policy sections */

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

.policy-section {
  opacity: 0;
  animation: policySectionFadeIn 0.5s ease-out forwards;
}

/* Staggered delays for visual polish */
.policy-section:nth-child(1) { animation-delay: 0.05s; }
.policy-section:nth-child(2) { animation-delay: 0.1s; }
.policy-section:nth-child(3) { animation-delay: 0.15s; }
.policy-section:nth-child(4) { animation-delay: 0.2s; }
.policy-section:nth-child(5) { animation-delay: 0.25s; }
.policy-section:nth-child(6) { animation-delay: 0.3s; }
.policy-section:nth-child(7) { animation-delay: 0.35s; }
.policy-section:nth-child(8) { animation-delay: 0.4s; }
.policy-section:nth-child(9) { animation-delay: 0.45s; }
.policy-section:nth-child(10) { animation-delay: 0.5s; }
.policy-section:nth-child(11) { animation-delay: 0.55s; }
.policy-section:nth-child(12) { animation-delay: 0.6s; }
.policy-section:nth-child(13) { animation-delay: 0.65s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .policy-section {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
