/* Terms and Privacy Policy Page Styling */
/* Matches lotlinx.com/terms-conditions/ structure */

.terms-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Match the source structure: .textual-content.post-entry */
.terms-page .textual-content.post-entry {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.terms-page .textual-content.post-entry h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #1a1a1a;
}

.terms-page .textual-content.post-entry p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  color: #333;
}

.terms-page .textual-content.post-entry p:last-child {
  margin-bottom: 0;
}

.terms-page .textual-content.post-entry strong {
  font-weight: 600;
  color: #1a1a1a;
}

.terms-page .textual-content.post-entry ul,
.terms-page .textual-content.post-entry ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style-type: disc !important; /* Show bullet points for ul - override any reset CSS */
}

.terms-page .textual-content.post-entry ol {
  list-style-type: decimal !important; /* Show numbers for ol - override any reset CSS */
}

.terms-page .textual-content.post-entry li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  display: list-item !important; /* Ensure list items display as list items - override any reset CSS */
  list-style-position: outside; /* Position bullets outside the content */
}

.terms-page .textual-content.post-entry li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .terms-page {
    padding: 24px 16px;
  }

  .terms-page .textual-content.post-entry {
    max-width: 100%;
  }

  .terms-page .textual-content.post-entry h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .terms-page .textual-content.post-entry p {
    font-size: 15px;
    line-height: 1.5;
  }

  .terms-page .textual-content.post-entry ul,
  .terms-page .textual-content.post-entry ol {
    padding-left: 20px;
  }
}
