
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
}

.legal-page, .thanks-page, .product-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 { font-size: 36px; margin-bottom: 20px; }
h2 { font-size: 24px; margin-top: 30px; margin-bottom: 15px; }
h3 { font-size: 20px; margin-top: 20px; margin-bottom: 10px; }
p { margin-bottom: 15px; }

.cta, .cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #1A4D2E;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
}

.cta:hover, .cta-primary:hover {
  background: #154124;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #1A4D2E;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.4);
}

/* Add padding to body for fixed navbar */
body {
  padding-top: 80px;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
}
