*************************** TERMS PAGE SAFE FIX ***************************

/* IMPORTANT: banner/header ko touch nahi karna */
.terms-section{
  background-color: #F9FAFB;
  padding: 60px 0;
}

/* content box only */
.terms-container{
  width: 85%;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* heading */
.terms-container h2{
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  color: #101F9D;
}

/* paragraph */
.terms-container p{
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* section headings */
.terms-container h3{
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #1C1632;
}

/* lists */
.terms-container ul{
  padding-left: 20px;
  margin-bottom: 15px;
}

.terms-container ul li{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #555;
}

/************************ RESPONSIVE ONLY ************************/

@media (max-width: 768px){
  .terms-container{
    width: 90%;
    padding: 25px;
  }

  .terms-container h2{
    font-size: 26px;
  }

  .terms-container h3{
    font-size: 20px;
  }

  .terms-container p,
  .terms-container ul li{
    font-size: 15px;
  }
}

@media (max-width: 480px){
  .terms-container{
    width: 95%;
    padding: 18px;
  }

  .terms-container h2{
    font-size: 22px;
  }
}