/* Styles specific to privacy policy page */
.page-header {
    padding-top: 120px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding-bottom: 50px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }
  
  .privacy-policy {
    padding: 5rem 0;
    background-color: white;
  }
  
  .privacy-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .privacy-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: var(--primary);
    font-weight: 600;
  }
  
  .privacy-content h2:first-child {
    margin-top: 0;
  }
  
  .privacy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--dark);
  }
  
  .privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .privacy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }
  
  .last-updated {
    font-style: italic;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .privacy-container {
      padding: 0 1.5rem;
    }
    
    .page-header {
      padding-top: 100px;
      padding-bottom: 40px;
    }
    
    .privacy-content h2 {
      font-size: 1.6rem;
    }
  }
  
  /* Print styles for privacy policy */
  @media print {
    .page-header {
      background-color: white;
      color: black;
      padding: 20px 0;
    }
    
    .privacy-policy {
      padding: 20px 0;
    }
    
    .privacy-content {
      font-size: 12pt;
    }
    
    .privacy-content h2 {
      font-size: 14pt;
      color: black;
    }
    
    .last-updated {
      font-size: 10pt;
    }
  }