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

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: var(--border-width-thin) var(--border-style) var(--color-border-strong);
  background-color: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.thank-you-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

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

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

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

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

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

ul {
  list-style: none !important;
}

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