:root {
  --blue-primary: #2563eb;
  --blue-dark: #1e40af;
  --black: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  line-height: 1.3;
}

a {
  color: var(--blue-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  position: relative;
  height: 120px;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  text-decoration: none;
  position: absolute;
  left: 0;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--black);
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.legal-hero {
  padding: 180px 0 40px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  text-align: center;
}

.legal-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-hero h1 span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--gray-500);
  font-size: 16px;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content {
  padding: 60px 0 100px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 17px;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 17px;
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--black);
  font-weight: 600;
}

.contact-card {
  margin-top: 40px;
  padding: 32px;
  border: 2px solid var(--gray-100);
  border-radius: 16px;
  background: var(--gray-100);
}

.contact-card h2 {
  margin-top: 0;
}

footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 8px;
}

footer .footer-links a {
  color: var(--gray-700);
  margin: 0 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-content {
    height: 90px;
    padding: 0 16px;
  }

  .logo img {
    height: 80px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-100);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 16px;
  }

  .legal-hero {
    padding: 130px 0 30px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }
}
