* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

h2 {
  font-size: 1.2rem;
  margin: 24px 0 8px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 24px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.links a,
.back {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
}

.links a:hover,
.back:hover {
  text-decoration: underline;
}

.text p {
  margin-bottom: 12px;
}