body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.logo-container {
  text-align: center;
  margin-bottom: 15px;
}

.logo-img {
  width: 120px; /* adjust as needed */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.terms-container {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  line-height: 1.7;
}

h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  color: #ccc;
  margin-bottom: 20px;
}

h3 {
  color: #f0f0f0;
  margin-top: 20px;
}

p {
  color: #ddd;
  margin-bottom: 10px;
}

.footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  color: #999;
}

.back-link {
  text-align: center;
  margin-top: 20px;
}

.back-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 8px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.back-link a:hover {
  background-color: #fff;
  color: #000;
}
