.thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou__container {
  max-width: 720px;
}

.thankyou__header {
  margin-bottom: var(--space-6);
}

.thankyou__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.thankyou__body {
  margin-bottom: var(--space-6);
}

.thankyou__body p:last-of-type {
  margin-bottom: 0;
}

.thankyou__subtitle {
  margin-bottom: var(--space-3);
}

.thankyou__next {
  margin-bottom: var(--space-6);
}

.thankyou__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: left;
}

.thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .thankyou__container {
    text-align: left;
  }

  .thankyou__header {
    text-align: center;
  }

  .thankyou__actions {
    flex-direction: column;
  }

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