/* Legal Pages Text Formatting
 * Simple enhancements for text readability on legal pages
 */

/* Apply these styles only to legal pages with this class */
.legal-text {
  /* Base text formatting */
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  
  /* Paragraph spacing */
  p {
    margin-bottom: 1.25rem;
  }
  
  /* Headings formatting */
  h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #184595;
  }
  
  h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #184595;
  }
  
  h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
  }
  
  /* Lists formatting */
  ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }
  
  /* Links formatting */
  a {
    color: #2563eb;
    text-decoration: underline;
  }
  
  /* Simple highlight for important paragraphs */
  .important {
    font-weight: 500;
    color: #000;
    background-color: #f0f9ff;
    padding: 0.75rem;
    border-left: 3px solid #2563eb;
    margin: 1rem 0;
  }
  
  /* Address block formatting */
  .address {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 2px solid #e5e7eb;
    line-height: 1.6;
  }
  
  /* Table formatting */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  th {
    text-align: left;
    padding: 0.5rem;
    background-color: #f1f5f9;
    font-weight: 600;
  }
  
  td {
    padding: 0.5rem;
    border-top: 1px solid #e5e7eb;
  }
}