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

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #f8f9fa;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 40px; }

nav a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 1.5rem;
}

nav a:hover { text-decoration: underline; }

/* Main content (terms/privacy pages) */
main > .container {
  background: #fff;
  margin: 2rem auto;
  max-width: 720px;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* Buttons */
.button {
  display: inline-block;
  background: #fff;
  color: #0ea5e9;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.button:hover { background: #f0f9ff; transform: translateY(-1px); }

/* Sections */
.section { padding: 2.5rem 0; }

.section-title {
  font-size: 1.3rem;
  color: #0ea5e9;
  margin-bottom: 0.75rem;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
}

.feature h2 {
  font-size: 1.05rem;
  color: #0ea5e9;
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

/* Quote */
.quote-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
  margin: 1rem 0;
}

blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

/* Categories */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.category {
  background: #f0f9ff;
  color: #0369a1;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Typography */
h1 {
  font-size: 1.6rem;
  color: #0ea5e9;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

h3 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.25rem; }

p, li { margin-bottom: 0.75rem; }
p.meta { color: #6b7280; font-size: 0.9rem; margin-top: -1rem; margin-bottom: 2rem; }
ol, ul { padding-left: 1.5rem; }
ol li, ul li { padding-left: 0.25rem; }

a { color: #0ea5e9; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

footer a { color: #6b7280; }
