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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #4ade80;
}

.nav-link.active {
  color: #4ade80;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #0a0a0a;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #4ade80;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234ade80" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  font-size: 1.2rem;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

/* Legal Navigation */
.legal-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 60px;
}

.legal-nav h3 {
  color: #4ade80;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.legal-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
}

.legal-nav-list a {
  color: #a1a1aa;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.legal-nav-list a:hover {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
}

/* Legal Document */
.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.legal-document h2 {
  color: #4ade80;
  margin-bottom: 30px;
  font-size: 2rem;
  border-bottom: 2px solid rgba(74, 222, 128, 0.3);
  padding-bottom: 15px;
}

.legal-document h3 {
  color: #4ade80;
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

.legal-document h4 {
  color: #ffffff;
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.legal-document p {
  color: #a1a1aa;
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-document ul, .legal-document ol {
  color: #a1a1aa;
  margin: 15px 0 15px 30px;
}

.legal-document li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-document strong {
  color: #ffffff;
}

.legal-document em {
  color: #4ade80;
}

.last-updated {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.last-updated strong {
  color: #4ade80;
}

/* Contact Section */
.legal-contact {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #0a0a0a;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }

  .mobile-menu-toggle {
      display: flex;
  }

  .page-header {
      padding: 120px 0 60px;
  }

  .page-header h1 {
      font-size: 2.5rem;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  .legal-document {
      padding: 25px;
  }

  .legal-nav-list {
      grid-template-columns: 1fr;
  }
}