@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

html {
  scroll-behavior: smooth;
}
.terms-wrapper {
  margin-top: 100px;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  margin-inline: auto;
}

.terms-sidebar {
  flex: 1;
  max-width: 220px;
  position: sticky;
  top: 80px;
}

.terms-sidebar h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-left: 4px solid #ff5f8d;
  padding-left: 10px;
}

.terms-sidebar ul {
  list-style: none;
  padding: 0;
}

.terms-sidebar ul li {
  margin-bottom: 14px;
  color: #aaa;
  transition: 0.3s;
  cursor: pointer;
}

.terms-sidebar ul li:hover {
  color: #fff;
}

.terms-content {
  flex: 3;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.terms-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff;
}

.terms-content h1 span {
  background: linear-gradient(90deg, #ff5f8d, #ffc371);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-updated {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.terms-section p {
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: whitesmoke;
}
@media (max-width: 768px) {
  .terms-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .terms-sidebar {
    max-width: 100%;
    position: static;
    margin: auto;
  }

  .terms-content {
    padding: 20px;
  }

  .terms-content h1 {
    font-size: 32px;
  }
}
