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

.thank-you-section {
  padding-block: clamp(4rem, 10vw, 6rem);
}

.thank-you-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(253, 249, 244, 0.98) 0, rgba(247, 241, 233, 0.99) 40%, rgba(241, 235, 227, 1) 100%);
  padding: clamp(2.25rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(184, 168, 150, 0.7);
}

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

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

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

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

@media (max-width: 599px) {
  .thank-you-card {
    padding: var(--space-16) var(--space-12);
  }

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

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

ul {
  list-style: none !important;
}

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