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

.thank-you-section {
  padding-block: var(--space-40);
}

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

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

.thank-you-title {
  margin-bottom: var(--space-8);
}

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

.thank-you-body p {
  text-align: left;
}

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

@media (max-width: 768px) {
  .thank-you-main {
    min-height: calc(100vh - 120px);
  }

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

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

  .thank-you-actions {
    justify-content: stretch;
  }

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