/* ===============================
   WebGen Solutions - Legal Pages
================================= */

:root {
  --bg: #0B0F1A;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --purple: #A855F7;
  --blue: #3B82F6;
  --text: #E5E7EB;
  --muted: #94A3B8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

h1 {
  margin-top: 0;
  font-size: 2rem;
  background: linear-gradient(to right, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-top: 40px;
  font-size: 1.2rem;
  color: var(--purple);
}

p {
  color: var(--muted);
  margin-bottom: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links a {
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 25px;
  }

  h1 {
    font-size: 1.6rem;
  }
}

/* ===============================
   NAVIGATION BAR
================================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
 -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  background: rgba(11, 15, 26, 0.75);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1rem;
  background: linear-gradient(
    270deg,
    var(--purple),
    var(--blue),
    var(--purple)
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
}

.nav-links a {
  margin-left: 20px;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--purple);
}

/* Push content below fixed nav */
.page-wrapper {
  padding-top: 100px;
}

/* ===============================
   ANIMATED GRADIENT HEADLINE
================================= */

h1 {
  margin-top: 0;
  font-size: 2rem;
  background: linear-gradient(
    270deg,
    var(--purple),
    var(--blue),
    var(--purple)
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 8s ease infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}