/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background: white;
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-size: cover;
  background-position: center;
  margin-top: 20px;
  width: 80%;
  margin-left: 10%;
}

.heading h1 {
  margin: 0;
  color: white;
  font-size: 3em;
}

h2 {
  color: #444;
  margin: 0 0 10px;
}

p {
  margin: 10px 0;
}

.privacy-content {
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

section {
  margin-bottom: 20px;
  padding: 10px 0;
}

footer {
  text-align: center;
  padding: 10px 0;
  background: #333;
  color: #fff;
  margin-top: 30px;
  font-size: 0.9em;
}

/* Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .heading {
    height: 120px;
    width: 90%;
    margin-left: 5%;
  }

  .heading h1 {
    font-size: 2.5em;
  }

  .privacy-content {
    padding: 15px;
  }

  footer {
    font-size: 0.8em;
  }
}

@media (max-width: 768px) {
  .heading {
    height: 100px;
    width: 100%;
    margin-left: 0;
  }

  .heading h1 {
    font-size: 2em;
  }

  .privacy-content {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .heading {
    height: 80px;
  }

  .heading h1 {
    font-size: 1.5em;
  }

  footer {
    padding: 8px 0;
  }
}
