/* Legal Content Section */
.legal-content {
  background: var(--bg-light);
  padding: 4rem 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
}

.legal-text h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.legal-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-text ul {
  list-style: disc;
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-text li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Thanks Content Section */
.thanks-content {
  background: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.thanks-message {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
}

.thanks-message p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.thanks-message ul {
  list-style: disc;
  margin: 1.5rem 0;
  padding-left: 2rem;
  text-align: left;
}

.thanks-message li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.thanks-message .contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.thanks-message .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thanks-message .contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.thanks-message .contact-item h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.thanks-message .contact-item p {
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-text,
  .thanks-message {
    padding: 0 1rem;
  }

  .legal-text h3 {
    font-size: 1.25rem;
  }

  .thanks-message .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-text p,
  .legal-text li,
  .thanks-message p,
  .thanks-message li {
    font-size: 0.9rem;
  }

  .thanks-message .contact-item i {
    font-size: 1.25rem;
  }

  .thanks-message .contact-item h3 {
    font-size: 1.1rem;
  }
}