/* privacy-notice.css */
:root {
  --dark-blue:  #0a2a50;
  --blue:       #297cc0;
  --light-blue: #e7f5fa;
}



.privacy-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease-out;
}



h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}


p, ul {

  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Hover “lift” and color shift */
p:hover {
  color: var(--blue);
  transform: translateX(4px);
}

/* Links in cookie section */
a:hover {
  color: var(--dark-blue);
}

/* Staggered fade-in */
.fade-item {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}
.fade-item:nth-child(2)  { animation-delay: 0.2s; }
.fade-item:nth-child(3)  { animation-delay: 0.4s; }
.fade-item:nth-child(4)  { animation-delay: 0.6s; }
.fade-item:nth-child(5)  { animation-delay: 0.8s; }
.fade-item:nth-child(6)  { animation-delay: 1.0s; }
.fade-item:nth-child(7)  { animation-delay: 1.2s; }
.fade-item:nth-child(8)  { animation-delay: 1.4s; }
.fade-item:nth-child(9)  { animation-delay: 1.6s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}