.thank-you {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.thank-you__container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

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

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

@media (max-width: 768px) {
  .thank-you {
    min-height: calc(100vh - 120px);
  }

  .thank-you__container {
    text-align: left;
  }

  .thank-you__actions {
    justify-content: flex-start;
  }
}
