.terms-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.terms-card {
  border: none;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-base);
  background-color: var(--white-color);
  padding: 2.5rem 3rem;
}
.terms-header {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}
.terms-header h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.terms-header p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}
.terms-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
}
.terms-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.terms-content p,
.terms-content ul,
.terms-content ol {
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.terms-content ul,
.terms-content ol {
  padding-left: 1.5rem;
}
.terms-content li {
  margin-bottom: 0.5rem;
}
.terms-content strong {
  color: var(--text-dark);
  font-weight: 600;
}
.terms-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.terms-content a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .terms-card {
    padding: 1.5rem;
  }
}