/* Privacy Policy Page */
.privacy-policy {
    padding: 80px 0;
    background: var(--soft-white);
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
  }
  
  .policy-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .policy-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy, #1A3657);
    margin-bottom: 10px;
  }
  
  .policy-header .last-modified {
    font-size: 0.9rem;
    color: var(--muted-teal, #2D5D5D);
    margin-bottom: 15px;
  }
  
  .policy-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--navy, #1A3657);
  }
  
  .policy-content p {
    margin-bottom: 15px;
  }
  
  .policy-content ul {
    margin: 0 0 20px 20px;
    padding: 0;
    list-style-type: disc;
  }
  
  .policy-content li {
    margin-bottom: 8px;
  }
  
  .policy-content .note {
    background: #fff3cd;
    padding: 12px 16px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 0.95rem;
  }
  
  .privacy-policy strong {
    font-size: 24;
    color: 'black';
  }