.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.thank-you__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.thank-you__header {
  margin-bottom: var(--space-6);
}

.thank-you__title {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

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

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .thank-you__card {
    padding: var(--space-6) var(--space-4);
  }

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

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