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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fafafa;
}

a { color: #5b4cdb; }
a:hover { color: #4338ca; }

.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand img {
  border-radius: 10px;
  display: block;
}

.site-nav a {
  margin-left: 18px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover { color: #5b4cdb; }

.page-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-main.narrow { max-width: 760px; }

.hero {
  text-align: center;
  margin-bottom: 48px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero .lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 680px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #5b4cdb;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
}

.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: #666; font-size: 0.95rem; }

.section-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.steps {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 28px 28px 48px;
  margin-bottom: 40px;
}

.steps li { margin-bottom: 10px; color: #444; }

.about-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 40px;
}

.about-box h2 { margin-bottom: 12px; }
.about-box p { color: #555; margin-bottom: 10px; }

.legal-doc h1 { margin-bottom: 6px; }
.legal-doc .updated { color: #888; font-size: 0.9rem; margin-bottom: 28px; }
.legal-doc h2 { margin-top: 28px; font-size: 1.1rem; }
.legal-doc p, .legal-doc li { color: #444; margin-bottom: 10px; }
.legal-doc ul { padding-left: 22px; margin-bottom: 12px; }

.site-footer {
  background: #1a1a2e;
  color: #ccc;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
}

.site-footer a:hover { color: #a5b4fc; }
