#privacy-policy {
    padding: 60px 0;
    background-color: #f2f6ff;
  }
  
  .privacy-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .privacy-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .privacy-content p, 
  .privacy-content ul {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .privacy-content strong {
    color: var(--primary-color);
  }
  
  .privacy-content ul {
    padding-left: 20px;
  }
  
  .privacy-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
  }
  
  .privacy-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
  }