@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --dark:#2d3142;
  --steel:#4f5d75;
  --muted:#bfc0c0;
  --white:#ffffff;
  --accent:#ef8354;
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Inter,sans-serif;
}

body {
  background:var(--dark);
  color:var(--white);
}

/* MAIN SECTION */
.privacy-section {
  padding:5rem 10%;
}

/* HEADER */
.privacy-header {
  text-align:center;
  margin-bottom:3rem;
}

.privacy-header h1 {
  font-size:3rem;
}

.privacy-header p {
  margin-top:0.5rem;
  color:var(--accent);
  font-weight:600;
}

/* CONTENT CARD */
.privacy-content {
  max-width:900px;
  margin:auto;
  background:rgba(255,255,255,0.04);
  padding:3rem;
  border-radius:14px;
  line-height:1.8;
}

/* TEXT */
.privacy-content p {
  color:#f1f1f1;
  margin-bottom:1.2rem;
}

.privacy-content h2 {
  margin-top:2.5rem;
  margin-bottom:1rem;
  color:var(--accent);
  font-size:1.4rem;
}

.privacy-content ul {
  margin-left:1.5rem;
  margin-bottom:1.5rem;
}

.privacy-content li {
  margin-bottom:0.6rem;
  color:#f1f1f1;
}

/* REVEAL ANIMATION */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:0.8s ease;
}

.reveal.active {
  opacity:1;
  transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px) {
  .privacy-section {
    padding:4rem 6%;
  }

  .privacy-header h1 {
    font-size:2.2rem;
  }

  .privacy-content {
    padding:2rem;
  }
}
