/* copyright.css */
:root {
  --dark-blue:  #0a2a50;
  --blue:       #297cc0;
  --light-blue: #e7f5fa;
}



.copyright-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.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--blue);
}

p {
  font-size: 1rem;
  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);
}

/* 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; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}