/* terms.css */
.terms-page {
  animation: slideIn 1.5s ease;
  padding: 2rem;
  background: linear-gradient(to top left, #f5f5f5, #dcdcdc);
  border-radius: 12px;
  max-width: 900px;
  margin: auto;
}

.terms-page h1 {
  color: #2f4f4f;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.terms-page p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin: 1rem 0;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}