.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.thanks-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 29, 61, 0.1);
  border: 1px solid rgba(0, 119, 182, 0.1);
  text-align: center;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1) 0%, rgba(72, 202, 228, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon i {
  font-size: 4rem;
  color: var(--color-tertiary);
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.thanks-subtext {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 2.5rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.thanks-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 119, 182, 0.1);
}

.info-item {
  display: flex;
  gap: 1rem;
  text-align: left;
}

.info-item i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-quaternary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-item p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .thanks-card {
    padding: 3rem 2rem;
  }

  .thanks-title {
    font-size: 2rem;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-actions .btn {
    width: 100%;
  }

  .thanks-info {
    grid-template-columns: 1fr;
  }
}