body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(270deg, #4fa9ff 0%, #2651ff 100%);
  color: white;
}

.terms-page {
  display: flex;
  justify-content: center;
  padding: 50px 20px 60px;
  min-height: 100vh;
}

.terms-container {
  max-width: 960px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.terms-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.terms-subtitle {
  text-align: center;
  font-size: 18px;
  color: #dbe6ff;
  margin-bottom: 40px;
}

.terms-content {
  max-height: auto;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ffffff22 transparent;
}

.terms-content h2 {
  margin-top: 30px;
  font-size: 22px;
  color: #fff;
}

.terms-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-top: 10px;
}

.terms-footer {
  margin-top: 40px;
  font-size: 13px;
  color: #ccc;
  text-align: right;
}

.agree-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 24px;
  background: #ffffff;
  color: #2651ff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.agree-button:hover {
  background: #e2e2e2;
}
@media (max-width: 440px) {
  .terms-page {
    padding: 20px 20px 60px;
  }
  .terms-title {
    font-size: 30px;
  }
.terms-subtitle {
  font-size: 14px;
}
.terms-content h2 {
  font-size: 18px;
}
.terms-content p {
font-size: 12px;
}




}