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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

header .subtitle {
  font-size: 1rem;
  color: #555;
}

.glass-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e0e0;
}

.glass-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.glass-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.features {
  margin: 1rem 0;
  padding-left: 1rem;
}

.features li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
  color: #444;
}

.stats {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.stats p {
  margin-bottom: 0.4rem;
  color: #1e40af;
}

.note {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}

.button.primary {
  background-color: #1e40af;
  color: white;
}

.button.primary:hover {
  background-color: #1e3a8a;
}

.button.secondary {
  background-color: #e2e8f0;
  color: #1e293b;
}

.button.secondary:hover {
  background-color: #cbd5e1;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 600px) {
  .button-row {
    flex-direction: column;
  }
}
