html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding: 0 20px;
  background-color: #f4f4f4;
  color: #333;
}

.terms-container {
  max-width: 900px;
  margin: 100px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Headings inside the section */
}
.terms-container h1 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.terms-container p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}
.terms-container ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.terms-container ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.terms-container a {
  color: #0066cc;
  text-decoration: none;
}
.terms-container a:hover {
  text-decoration: underline;
}
.terms-container strong {
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    padding: 20px;
  }
  h1 {
    font-size: 1.5rem;
  }
  p,
  ul li {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=terms.css.map */
