/* terms.css */
.terms-section {
  padding: 60px 200px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.terms-section h1 {
  color: #0d0d43;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding-bottom: 8px;
  margin-top: 80px;
}



.terms-section h3 {
  color: #0d0d43;
  font-size: 22px;
  margin-top: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.terms-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: rgb(121, 175, 245);
  border-radius: 4px;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-section ul li {
  margin-bottom: 10px;
}

.terms-section a {
  color: #0d0d43;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 40px 20px;
  }
}
