/* stylelint-disable media-feature-range-notation */

.main-body {
  width: 90%;
  height: 100vh;
  height: auto;
  margin: auto;
  background-color: lightblue;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: start;
  padding: 60px 50px;
  border-radius: 40px 40px 0 0;
}

.terms-conditions h1 {
  font-size: 30px;
  color: rgb(163 3 3);
  font-weight: bold;
}

.heading {
  font-size: 20px;
  color: rgb(163 3 3);
  font-weight: bold;
}

ul {
  padding-left: 50px;
}

.inner-para {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

@media (max-width: 500px) {
  .main-body {
    width: 100%;
    margin-bottom: 50px;
  }

  ul {
    padding-left: 25px;
  }
}
