.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 6rem;
  background: linear-gradient(135deg, rgba(79, 28, 81, 0.1) 0%, rgba(33, 15, 55, 0.2) 100%);
}

.thanks-content {
  background: linear-gradient(135deg, rgba(33, 15, 55, 0.8) 0%, rgba(79, 28, 81, 0.6) 100%);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.thanks-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
}

.thanks-info {
  background: rgba(33, 15, 55, 0.5);
  border: 1px solid rgba(220, 160, 109, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.thanks-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-white);
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.step-content p {
  color: var(--color-gray);
  margin: 0;
}

.thanks-cta {
  margin-bottom: 3rem;
}

.thanks-cta p {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-reminder {
  background: rgba(33, 15, 55, 0.5);
  border: 1px solid rgba(220, 160, 109, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-reminder p {
  color: var(--color-gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-reminder p:last-child {
  margin-bottom: 0;
}

.contact-reminder i {
  color: var(--color-accent);
}

.contact-reminder strong {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .thanks-content {
    padding: 3rem 2rem;
  }

  .thanks-title {
    font-size: 2rem;
  }

  .thanks-subtitle {
    font-size: 1.1rem;
  }

  .step-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .contact-reminder p {
    flex-direction: column;
    text-align: center;
  }
}