/* Terms and Conditions Styling */

/* Main terms content container */
.terms-content {
    line-height: 1.6;
    text-align: justify;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    color: #333;
  }
  
  /* Section headings */
  .terms-content h3 {
    font-family: 'Times New Roman', Times, serif;
    color: #2c4964;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
  }
  
  /* Subsection headings */
  .terms-content h4 {
    font-family: 'Times New Roman', Times, serif;
    color: #3e5570;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  /* Paragraphs */
  .terms-content p {
    margin-bottom: 15px;
  }
  
  /* Lists */
  .terms-content ul, 
  .terms-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
  }
  
  .terms-content li {
    margin-bottom: 8px;
  }
  
  /* Nested lists */
  .terms-content ul ul, 
  .terms-content ol ol, 
  .terms-content ul ol, 
  .terms-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  /* Last updated text */
  .terms-content p strong {
    display: block;
    margin-top: 30px;
    text-align: right;
    font-style: italic;
  }
  
  /* Contact information */
  .terms-content p:nth-last-of-type(2) {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
  }
  
  /* Print styles - for better printing experience */
  @media print {
    .terms-content {
      background-color: white;
      box-shadow: none;
      border: none;
      font-size: 11pt;
    }
    
    .terms-content h3 {
      font-size: 14pt;
      page-break-after: avoid;
    }
    
    .terms-content h4 {
      font-size: 12pt;
      page-break-after: avoid;
    }
    
    .terms-content p, 
    .terms-content ul, 
    .terms-content ol {
      page-break-inside: avoid;
    }
  }