* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0f172a; /* dark blue */
  color: #e5e7eb;
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  background: #020617;
  max-width: 800px;
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #38bdf8;
}

.tagline {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 30px;
}

section {
  margin-bottom: 28px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

p {
  line-height: 1.7;
  color: #cbd5f5;
}

ul {
  margin-left: 20px;
}

ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.quote {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  font-style: italic;
  font-size: 1rem;
}
