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

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

.thank-you-card {
  max-width: 720px;
  width: 100%;
  background-color: var(--color-card);
  border-radius: var(--radius-xl);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--shadow-medium);
  text-align: center;
}

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

.thank-you-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-24);
  margin-inline: auto;
}

.thank-you-card p {
  margin-inline: auto;
}

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

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

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