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

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

.thank-you-card {
  max-width: 640px;
  width: 100%;
  text-align: left;
}

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

.thank-you-title {
  margin-top: var(--space-3);
}

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

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

@media (max-width: 600px) {
  .thank-you-section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-12);
    min-height: auto;
  }

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

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