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

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

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

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.thank-you-body p:last-of-type {
  margin-bottom: var(--space-6);
}

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

.thank-you-actions .btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .thank-you-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .thank-you-container {
    text-align: left;
  }

  .thank-you-actions {
    justify-content: flex-start;
  }
}
