.thankyou-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.thankyou-card h1 {
  margin-bottom: var(--space-4);
}

.thankyou-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.thankyou-card p {
  margin-bottom: var(--space-4);
}

.thankyou-actions {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .thankyou-card {
    padding: var(--space-6);
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
