.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  background: linear-gradient(125deg, rgba(199, 250, 254, 0.08) 0%, rgba(58, 146, 153, 0.12) 100%);
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  margin-bottom: 2rem;
}

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

.thanks-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.thanks-content .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 2.5rem;
}

.thanks-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: left;
  border: 1px solid rgba(58, 146, 153, 0.15);
}

.thanks-info p {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.thanks-info ul {
  list-style: none;
  padding: 0;
}

.thanks-info ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-gray);
  font-size: 1rem;
}

.thanks-info ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.thanks-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .thanks-content h1 {
    font-size: 2rem;
  }

  .thanks-content .lead {
    font-size: 1.125rem;
  }

  .thanks-icon i {
    font-size: 3.5rem;
  }

  .thanks-cta {
    flex-direction: column;
  }

  .thanks-cta a {
    width: 100%;
  }
}