body {
  margin: 0;
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
}

#terms{
    margin-top: 100px;
}

/* Layout */
.container {
  max-width: 800px;
  margin: auto;
  padding: 80px 20px;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  margin-top: 40px;
  color: #fff;
}

h3 {
  margin-top: 10px;
  color: #ccc;
}

/* Text */
p {
  line-height: 1.7;
  color: #bbb;
  color: #fff;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Divider */
hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 30px 0;
}

/* Contact Box */
.contact-box {
  margin-top: 20px;
  padding: 20px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-box a {
  color: #fff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}