.thanks-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(176, 48, 82, 0.04) 0%, rgba(215, 108, 130, 0.08) 100%);
  padding: 2rem;
}

.thanks-card {
  max-width: 600px;
  width: 100%;
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-primary);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

.thanks-icon i {
  font-size: 3rem;
  color: var(--color-white);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-quaternary);
  margin-bottom: 1rem;
}

.thanks-message {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thanks-info {
  background: var(--color-gray-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.thanks-info p {
  margin: 0;
  color: var(--color-dark);
  font-weight: 500;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .thanks-card {
    padding: 2rem 1.5rem;
  }

  .thanks-title {
    font-size: 1.75rem;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .btn-gradient,
  .btn-outline {
    width: 100%;
  }
}