*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#e9eaec;
  font-family:Arial, Helvetica, sans-serif;
  color:#1c1c1c;
}

.terms-page{
  min-height:100vh;
  padding:70px 75px;
  display:grid;
  grid-template-columns:38% 62%;
  gap:60px;
}

.terms-header{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

h1{
  font-size:95px;
  line-height:.9;
  font-weight:400;
  letter-spacing:-4px;
}

.back-link{
  width:fit-content;
  text-decoration:none;
  color:#1c1c1c;
  background:#f0d229;
  font-size:22px;
  padding:0 6px;
}

.terms-content{
  max-width:850px;
  align-self:center;
}

.terms-content p{
  font-size:18px;
  line-height:1.45;
  margin-bottom:28px;
}

.terms-content h2{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  margin-top:26px;
}

.terms-content a{
  color:#1c1c1c;
  font-weight:700;
}

@media(max-width:900px){

  .terms-page{
    grid-template-columns:1fr;
    padding:40px 24px;
  }

  h1{
    font-size:58px;
  }

  .terms-header{
    gap:40px;
  }

  .terms-content p{
    font-size:16px;
  }

}