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

body {
  background: linear-gradient(180deg, #041629 0%, #020b1a 100%);
  min-height: 100vh;
  font-family: 'Quicksand', sans-serif;
  color: #b8d8f8;
  padding: 32px 22px;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 380px;
}

.back {
  display: inline-block;
  margin-bottom: 18px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  color: rgba(150, 200, 255, 0.7);
  text-decoration: none;
}
.back:hover { color: #fff; }

.card {
  background: #fbf5e6;
  color: rgba(40, 30, 20, 0.85);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card h1 {
  font-family: 'Gochi Hand', cursive;
  font-weight: 400;
  font-size: 42px;
  color: #ec5a4d;
  line-height: 1;
  margin-bottom: 12px;
}

.card .lede {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(40, 30, 20, 0.85);
  margin-bottom: 18px;
}

.card h2 {
  font-family: 'Gochi Hand', cursive;
  font-weight: 400;
  font-size: 22px;
  color: #2b4d8c;
  margin: 20px 0 8px;
}

.card p {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(40, 30, 20, 0.82);
  margin-bottom: 12px;
}
.card p strong { color: rgba(40, 30, 20, 0.95); }

.dont-collect {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.dont-collect li {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(40, 30, 20, 0.8);
  padding-left: 24px;
  position: relative;
}
.dont-collect li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Gochi Hand', cursive;
  font-size: 18px;
  color: #ec5a4d;
  line-height: 1.6;
}

.card .note {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(40, 30, 20, 0.7);
  margin-bottom: 14px;
}

.card .questions {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  color: rgba(40, 30, 20, 0.6);
  margin: 0;
}
.card a {
  color: #2b4d8c;
  text-decoration: underline;
}
.card a:hover { color: #1d3a73; }

.page-footer {
  margin-top: 20px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  color: rgba(150, 200, 255, 0.6);
}
.page-footer a {
  color: rgba(150, 200, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(150, 200, 255, 0.3);
}
.page-footer a:hover { color: #fff; border-bottom-color: #fff; }

@media (min-width: 768px) {
  .page { max-width: 600px; }
  .card {
    padding: 32px 32px;
    border-radius: 26px;
  }
  .card h1 { font-size: 52px; }
  .card .lede { font-size: 16px; }
  .card p { font-size: 16px; }
  .card h2 { font-size: 26px; }
  .dont-collect li { font-size: 16px; }
}
