/* General Page Styling */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #f5f5f5;
}

/* Container */
.policy-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Headings */
h1, h2 {
  text-align: center;
  color: #00c6ff;
  margin-bottom: 15px;
}

.intro {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #e3e3e3;
}

/* Sections */
section {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Links */
a {
  color: #00c6ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #bbb;
}
