/* Conteúdo principal da página de termos */
.terms-content {
  background-color: var(--dark-blue-card, #1e232e);
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  border: 1px solid var(--dark-border, #3e4553);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--light-text, #adb5bd);
  line-height: 1.7;
}

.terms-content h2 {
  color: #ffffff;
  border-bottom: 2px solid var(--brand-yellow, #e8a700);
  padding-bottom: 10px;
  margin-top: 30px; /* Espaço antes de um novo H2 */
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.terms-content h2:first-of-type {
  margin-top: 0; /* Remove espaço extra do primeiro H2 */
}

.terms-content h3 {
  color: #f0f0f0;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.terms-content p {
  margin-bottom: 15px;
}

.terms-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.terms-content li {
  margin-bottom: 10px;
}

.terms-content strong {
  color: #ffffff;
  font-weight: 600;
}

.terms-content a {
  color: var(--brand-yellow, #e8a700);
  text-decoration: underline;
}

/* Estilo para a data da última atualização */
.last-updated {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--light-text, #adb5bd);
  margin-bottom: 25px;
  text-align: left;
}
