.thanks-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 6rem;
  background: linear-gradient(135deg, rgba(95, 185, 176, 0.06) 0%, rgba(190, 249, 146, 0.08) 100%);
}

.thanks-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-icon i {
  font-size: 4rem;
  color: var(--color-white);
}

.thanks-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.thanks-hero .lead {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thanks-info {
  padding: 2rem;
  background: rgba(95, 185, 176, 0.1);
  border-radius: 16px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.thanks-info p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.thanks-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thanks-links li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  color: var(--color-dark);
  font-weight: 600;
  transition: var(--transition);
}

.thanks-links li a:hover {
  background: var(--color-tertiary);
  color: var(--color-white);
  transform: translateX(8px);
}

.thanks-links i {
  font-size: 1.5rem;
  color: var(--color-tertiary);
}

.thanks-links li a:hover i {
  color: var(--color-white);
}

.thanks-cta {
  animation: fadeInUp 0.6s ease 0.8s both;
}

@media (max-width: 767px) {
  .thanks-hero h1 {
    font-size: 2rem;
  }
  .thanks-icon {
    width: 100px;
    height: 100px;
  }
  .thanks-icon i {
    font-size: 3rem;
  }
}