/* Privacy Policy Page Styles */
.privacy-section {
    max-width: 900px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
  }
  
  .privacy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
  }
  
  .last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .privacy-intro {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }
  
  .privacy-intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .privacy-intro p:last-child {
    margin-bottom: 0;
  }
  
  .privacy-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-light);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .privacy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .privacy-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .privacy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
    color: var(--text-muted);
  }
  
  .privacy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }
  
  .privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .privacy-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
  }
  
  /* Strong text emphasis */
  .privacy-content strong {
    color: var(--text-light);
    font-weight: 600;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .privacy-section h1 {
      font-size: 2rem;
    }
    
    .privacy-content h2 {
      font-size: 1.5rem;
    }
    
    .privacy-intro {
      padding: 1rem;
    }
  }