
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease;
  overflow: hidden;
}

.thanks-section {
  background: var(--white); /* White background for simplicity */
  padding: 3rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
}

.thanks-message {
  background: var(--bg-light); /* Light background for contrast */
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.thanks-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange); /* Solid color instead of gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 1rem;
}

.thanks-message p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-btn {
  background: var(--primary-orange); /* Solid color for buttons */
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.action-btn:hover {
  background: var(--primary-red); /* Simple hover color change */
}

.thanks-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
}

.thanks-info h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.thanks-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.thanks-info a {
  color: var(--primary-orange);
  font-weight: bold;
  text-decoration: none;
}

.thanks-info a:hover {
  text-decoration: underline;
}

/* Responsive Design for Thank You Section */
@media (max-width: 868px) {
  .thanks-section {
    padding: 2rem 0.5rem;
  }

  .thanks-content {
    padding: 0 0.5rem;
  }

  .thanks-message,
  .thanks-info {
    padding: 1rem;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .thanks-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .thanks-content h2 {
    font-size: 1.6rem;
  }

  .thanks-content p {
    font-size: 0.85rem;
  }

  .thanks-info h3 {
    font-size: 1.1rem;
  }
}