.thank-you-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) * 2);
}

.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

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

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

.thank-you-body p {
  font-size: var(--font-size-sm);
}

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

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

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

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