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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.narrow {
  max-width: 760px;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #10b981;
  color: white;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.section {
  padding: 80px 20px;
}

.alt {
  background: #f8fafc;
}

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

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 20px;
}

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

a {
  color: #10b981;
  text-decoration: none;
}

.privacy-page {
  padding: 80px 20px;
}
