

/* ================= BASE ================= */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #fdfdfc;
  color: #121417;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ================= NAV ================= */
nav {
  position: static;
  top: 0;
  background: none;
  border-bottom: 0px solid #eee;
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 32px;   /* desktop */
  width: auto;
  display: block;
}


@media (max-width: 768px) {
  .logo img {
    height: 24px;
  }
}



.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}








/* ================= LEGAL PAGES (GLOBAL SYSTEM) ================= */

.legal {
  max-width: 820px;
  margin: 40px auto 60px;
  padding: 0 10px;
  line-height: 1.75;
  font-size: 15px;
  color: #2b2f33;
}

/* Title */
.legal h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

/* Last updated */
.legal .updated {
  font-size: 13px;
  color: #777;
  margin-bottom: 25px;
}

/* Section headings */
.legal h2 {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #121417;
}

/* Paragraphs */
.legal p {
  margin-bottom: 14px;
}

/* Lists */
.legal ul {
  padding-left: 18px;
  margin-top: 8px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.legal li {
  margin-bottom: 8px;
}

/* Optional polish */
.legal li::marker {
  color: #444;
}












/* ================= FOOTER (Professional Minimal) ================= */

footer {
  background: #121417;
  color: #aaa;
  padding: 50px 0;
  text-align: center;
  font-size: 14px;
}

.footer-brand {
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}



.footer-copy {
  font-size: 13px;
  color: #777;
}











/* ================= MOBILE (FINAL CLEAN) ================= */

@media (max-width: 768px) {

  /* GLOBAL SPACING */
  .container {
    padding: 0 16px;
  }

  .legal {
    padding: 0 16px;
  }

  /* NAV */
  nav {
    padding: 16px 0;
  }

  .nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* LINKS */
  .nav > div:last-child {
    display: flex;
    gap: 14px;
    white-space: nowrap; /* prevent breaking */
  }

  .nav a {
    margin: 0;
    font-size: 14px;
  }

  /* LEGAL TEXT */
  .legal {
    margin: 30px auto 50px;
    font-size: 14px;
    line-height: 1.65;
  }

  .legal h1 {
    font-size: 24px;
  }

  .legal h2 {
    font-size: 16px;
    margin-top: 25px;
  }

  .legal ul {
    padding-left: 16px;
  }

  /* FOOTER */
  footer {
    padding: 40px 0;
  }

  .footer-links {
    font-size: 13px;
    line-height: 1.6;
  }

}
