    /* Privacy Policy Page Custom Styles */
    .privacy-policy-section {
      padding: 80px 0;
      background-color: #f9fbfc;
    }
    
    .privacy-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/laundry-security.jpg');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 100px 0;
      text-align: center;
      margin-bottom: 50px;
    }
    
    .privacy-hero h2 {
      font-size: 42px;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    
    .privacy-hero p {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto;
      color: #fff;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .privacy-content {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.05);
      padding: 40px;
    }
    
    .privacy-content h2 {
      font-size: 32px;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .privacy-content h2:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .privacy-content h3 {
      color: var(--primary-color);
      font-size: 24px;
      margin: 30px 0 15px;
      padding-left: 15px;
      border-left: 4px solid var(--primary-color);
    }
    
    .privacy-content p, .privacy-content li {
      font-size: 16px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 15px;
    }
    
    .privacy-content ul {
      padding-left: 20px;
      margin-bottom: 25px;
    }
    
    .privacy-content li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }
    
    .privacy-content li:before {
      content: "\f00c";
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--primary-color);
    }
    
    .privacy-card {
      background-color: #f8f9fa;
      border-left: 4px solid var(--primary-color);
      padding: 20px;
      margin: 30px 0;
      border-radius: 6px;
    }
    
    .privacy-card h4 {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--primary-color);
    }
    
    .privacy-card p {
      margin-bottom: 0;
    }
    
    .privacy-contact {
      background-color: #f1f7ff;
      padding: 30px;
      border-radius: 8px;
      margin-top: 40px;
      text-align: center;
    }
    
    .privacy-contact h3 {
      border-left: none;
      padding-left: 0;
      text-align: center;
    }
    
    .privacy-contact p {
      margin-bottom: 20px;
    }
    
    .privacy-contact .contact-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .privacy-contact .contact-info a {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      text-decoration: none;
      color: var(--primary-color);
    }
    
    .privacy-contact .contact-info a:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      background-color: var(--primary-color);
      color: #fff;
    }
    
    .privacy-contact .contact-info i {
      margin-right: 10px;
      font-size: 18px;
    }
    
    .last-updated {
      text-align: center;
      font-style: italic;
      margin-top: 40px;
      color: #777;
    }
    
    .toc {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
    }
    
    .toc h4 {
      margin-bottom: 15px;
      color: var(--primary-color);
      font-size: 18px;
    }
    
    .toc ol {
      counter-reset: item;
      padding-left: 10px;
    }
    
    .toc li {
      display: block;
      margin-bottom: 5px;
      padding-left: 0;
    }
    
    .toc li:before {
      content: counters(item, ".") ". ";
      counter-increment: item;
      font-weight: 600;
      color: var(--primary-color);
      position: static;
      font-family: inherit;
    }
    
    .toc a {
      color: #333;
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .toc a:hover {
      color: var(--primary-color);
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      .privacy-hero {
        padding: 70px 0;
      }
      
      .privacy-hero h2 {
        font-size: 32px;
      }
      
      .privacy-hero p {
        font-size: 16px;
      }
      
      .privacy-content {
        padding: 25px;
      }
      
      .privacy-content h2 {
        font-size: 28px;
      }
      
      .privacy-content h3 {
        font-size: 22px;
      }
      
      .privacy-contact .contact-info {
        flex-direction: column;
        gap: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .privacy-hero h2 {
        font-size: 28px;
      }
      
      .privacy-content {
        padding: 20px 15px;
      }
      
      .privacy-content h2 {
        font-size: 24px;
      }
      
      .privacy-content h3 {
        font-size: 20px;
      }
    }
