* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 15px;
}

.terms-container {
  width: 100%;
  max-width: 900px;
}

.terms-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.terms-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 35px;
}

.terms-card {
  background: #121212;
  border-radius: 16px;
  padding: 22px 25px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.terms-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f1f1f1;
}

.terms-card p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 10px;
}

.terms-card p:last-child {
  margin-bottom: 0;
}
