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

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

.thank-you__card {
  max-width: 640px;
  width: 100%;
  padding: var(--space-40) var(--space-32);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  background-color: var(--color-surface);
  text-align: center;
}

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

.thank-you__lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-20);
}

.thank-you__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-32);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
}

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

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

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
