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

.thank-you-container {
  max-width: 640px;
}

.thank-you-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.thank-you-header h1 {
  margin-bottom: var(--space-8);
}

.thank-you-body {
  text-align: center;
}

.thank-you-body p {
  margin-bottom: var(--space-10);
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

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

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you-actions .button {
    width: 100%;
    justify-content: center;
  }
}
