/* Privacy section container */
.footer-privacy {
  animation: slideFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 40px;
}

/* Heading animation */
.footer-privacy h2 {
  color: #1E90FF;
  margin-bottom: 15px;
  animation: bounceIn 0.7s ease-in;
}

/* Paragraph fade-in */
.footer-privacy p {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(15px);
  margin-bottom: 10px;
}

/* Link interaction */
.footer-privacy a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover underline effect */
.footer-privacy a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #1E90FF;
  transition: width 0.3s ease;
}

.footer-privacy a:hover {
  color: #104E8B;
  transform: scale(1.05);
}

.footer-privacy a:hover::after {
  width: 100%;
}

/* Keyframe animations */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  80% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
/* Apply fade-slide to entire page content */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #f0f8ff, #e6f2ff);
  color: #333;
}

header {
  background: linear-gradient(to right, #1E90FF, #4682B4);
  color: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.policy-container {
  background-color: #ffffff;
  padding: 40px;
  margin: 30px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Already provided animations can stay */

.footer-faq h2,
.footer-privacy h2 {
  border-bottom: 2px solid #1E90FF;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}


/* FAQ Section */
.footer-faq {
  animation: fadeDelayIn 1.5s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
}

/* Privacy Section */
.footer-privacy {
  animation: fadeDelayIn 1.8s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
}

/* Keyframes */
@keyframes fadePageIn {
  to {
    opacity: 1;
  }
}

@keyframes dropSlide {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDelayIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
