/* Quantarra Strategies LLC — Global Styles */
/* Design: minimal, clean, mobile-first */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
nav {
  padding: 20px 24px;
  max-width: 680px;
  margin: 0 auto;
}

nav a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  color: #1a1a1a;
}

/* Typography */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  color: #333;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 32px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #888;
}

footer a {
  color: #888;
}

footer a:hover {
  color: #555;
}

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  margin-right: 16px;
}

/* Badge / Tag */
.badge {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* Feature list */
.features {
  list-style: none;
  margin: 20px 0;
}

.features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #333;
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 600;
}

/* Privacy policy specific */
.policy-section {
  margin-bottom: 32px;
}

.policy-section p, .policy-section ul {
  font-size: 0.95rem;
  color: #444;
}

.policy-section ul {
  margin: 8px 0 16px 20px;
}

.policy-section li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 40px 16px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
