

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.terms-container {
  min-height: 100vh;
  padding: 40px 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terms-card {

  max-width: 1200px;
  width: 100%;
  padding: 40px;
  border-radius: 12px;

}

h1 {
  text-align: center;
  color: #1e3361;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro {

  font-size: 17px;
  margin-bottom: 40px;

}

.terms-section {
  margin-bottom: 30px;
}

.terms-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3361;
}

.terms-section p {
  font-size: 16px;
}

.terms-section ul {

  margin-top: 10px;
}

.terms-section li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-card {
    padding: 25px;
  }

  h1 {
    font-size: 26px;
  }

  .terms-section h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    line-height: 1.5;
  }

  .terms-container {
    padding: 20px 12px;
    align-items: flex-start;   
  }

  .terms-card {
    padding: 18px;
    border-radius: 8px;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .intro {
    font-size: 14px;
    margin-bottom: 25px;
    text-align: justify;
  }

  .terms-section {
    margin-bottom: 20px;
  }

  .terms-section h2 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .terms-section p {
    font-size: 15px;
    line-height: 1.6;
    text-align:justify
  }

  .terms-section li {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
