.hero {
    position: relative;
    height:450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background:
    linear-gradient( rgba(0, 0, 0, 0.5)),

  url('/images/terms-background.jpg') center/cover no-repeat;
  }
  
  .hero-content {
    max-width: 1110px;
    padding: 20px;
  }
.hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-top: 50px;
    font-family: 'Times New Roman', Times, serif;
  }
.general-info {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  max-width: 800px;
  margin: 100px auto 0 auto;
  text-align: left; 
}
.info-item {
  width: 100%; 
  background: #fff;
  padding: 10px 0;
  margin-bottom: 20px;
}
.general-info .info-title {
  font-size: 26px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 8px;
  text-align: left; 
}

.info-item p {
  font-size: 14px;
  color: #00000080;
  line-height: 1.4;
  text-align: left; 
}

.subinfo {
  margin-left: 15px;
}
@media (max-width: 768px) {
    .hero h1 {
    font-size: 30px;
  }
  .general-info {
    max-width: 90%;
    margin: 60px auto 0 auto;
    padding: 0 10px;
  }

  .general-info .info-title {
    font-size: 20px;
  }

  .info-item {
    padding: 15px;
  }

  .info-item p {
    font-size: 13px;
  }

  .subinfo {
    margin-left: 0;
  }
}