* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f7f9fc;
  color: #333;
}

.terms-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.terms-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #0a7cff;
  font-size: 2.2rem;
}

.terms-container h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #111;
}

.terms-container p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: #555;
}

.last-updated {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}

/* 📱 Mobile responsiveness */
@media (max-width: 600px) {
  .terms-container {
    margin: 30px 15px;
    padding: 18px;
  }

  .terms-container h1 {
    font-size: 1.7rem;
  }

  .terms-container h2 {
    font-size: 1.05rem;
  }

  .terms-container p {
    font-size: 0.9rem;
  }
}
