.terms-page {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
  padding: 175px 20px 60px;
  display: flex;
  justify-content: center;
}

.terms-card {
  background: #fff;
  max-width: 900px;
  width: 100%;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease-in-out;
}

.terms-card h1 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.intro {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.terms-block {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s ease;
}

.terms-block:hover {
  transform: translateX(5px);
}

.terms-block h2 {
  font-size: 18px;
  color: #111;
  margin-bottom: 6px;
}

.terms-block h2::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1d41e1;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  transform: translateY(-2px);
}

.terms-block p {
  color: #555;
  line-height: 1.7;
}

.terms-block ul li {
  color: #555;
  line-height: 1.7;
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .terms-page {
  padding: 120px 20px 60px;
  }
}