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

.thank-you-container {
  display: flex;
  justify-content: center;
}

.thank-you-card {
  max-width: 40rem;
  width: 100%;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

.thank-you-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-4);
}

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

.thank-you-secondary-links {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.thank-you-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.thank-you-link:hover {
  color: var(--color-primary-strong);
}

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

  .thank-you-title {
    font-size: var(--font-size-2xl);
  }
}
