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

.thank-you-section {
  width: 100%;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.thank-you-container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.thank-you-body {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

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

.thank-you-body p:last-child {
  margin-bottom: 0;
}

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

.thank-you-actions .button {
  min-width: 220px;
  justify-content: center;
}

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

  .thank-you-body {
    padding: var(--space-4);
  }

  .thank-you-lead {
    font-size: var(--font-size-base);
  }
}
