html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* .content-header{
    padding: 50px 0px 20px 20px;
    margin: auto
} */

.content-header {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding: 50px 20px;
    padding-bottom: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.content-header h1 {
    font-size: 24px;
}



/* Wrap entire section in a full height block */
.terms-wrapper {
  height: 100vh;
  overflow: hidden;
}

.terms-page {
  display: flex;
  max-width: 1200px;
  margin: auto;
  height: 100vh;
  gap: 40px;
  padding: 50px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.terms-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.terms-content {
  max-width: 700px;
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.terms-sidebar h1 {
  font-size: 18px;
  margin-bottom: 20px;
}

.terms-sidebar nav button {
  display: block;
  margin-bottom: 10px;
  padding: 10px;
  width: 150px;
  /* border: 1px solid #000; */
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  border-radius: 8px;
  border: none;
}

.terms-sidebar nav .active {
  background-color: #000;
  color: #fff;
}

.terms-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.terms-content .update {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
}

.terms-content h3 {
  font-size: 18px;
  margin-top: 30px;
}

.terms-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.terms-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-content ul li {
  margin-bottom: 10px;
}

.terms-content a{
    color: #F56630;
}

@media screen and (max-width: 768px) {
  .terms-page {
    flex-direction: column;
    padding: 20px;
  }

  .terms-sidebar {
    width: 100%;
  }
}