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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f0f0f0;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Banner */
.banner {
  width: 100%;
  background: #00bcd4;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .025em;
}

/* Page background */
.page-bg {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  background: #fbeaea;
}

/* Card wrapper */
.wrapper {
  width: 100%;
  max-width: 512px;
  background: #fffafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
}

/* Logo */
.logo { width: 80px; height: 80px; margin-bottom: 16px; }

/* Title */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.subtitle {
  color: #888;
  text-align: center;
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Steps */
.steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00bcd4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-text {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
}

/* CTA */
.cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #e53935;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 16px;
  border-radius: 9999px;
  text-decoration: none;
  letter-spacing: .05em;
  margin-top: 15px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  transition: background .15s;
}
.cta:hover { background: #c62828; }

/* Disclaimer */
.disclaimer {
  text-align: center;
  font-size: .75rem;
  color: #e53935;
  font-style: italic;
}

/* FAQ */
.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}

.faq-item {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.faq-arrow {
  color: #888;
  transition: transform .2s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #888;
  font-size: .875rem;
  line-height: 1.5;
  transition: max-height .25s ease, padding .25s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

/* Copyright */
.copyright {
  text-align: center;
  font-size: .75rem;
  color: #888;
  margin-top: 32px;
}
