* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
#terms-main-container {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#terms-heading-container {
  height: fit-content;
  width: 100%;
  display: flex;
  padding: 50px 0;
  align-items: center;
  justify-content: center;
  background-color: #121216;
}
#terms-heading {
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: fit-content;
  width: 50%;
}
#terms-heading span {
  color: white;
}
#terms-heading h1 {
  color: #0077ff;
}
#terms-second-main-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: whitesmoke;
}
#terms-bottom-container {
  height: fit-content;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 25px;
  padding: 20px 0;
  padding-top: 0;
  text-align: center;
}
#terms-bottom-container h5 {
  color: gray;
  text-align: left;
  width: 100%;
  margin-top: 40px;
}
#terms-bottom-container p {
  text-align: left;
  color: black;
}
#terms-bottom-container p span {
  color: #0077ff;
}
#terms-bottom-container h2 {
  color: black;
  text-align: left;
}
#terms-bottom-container span {
  font-weight: 500;
  color: black;
}
@media (max-width: 600px) {
  #terms-upper-container {
    height: 300px;
    width: 80%;
  }
}
