body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f3f3;
    color: #1e1e1e;
    line-height: 1.6;
  }
  
  .title-bar.full-width {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #0078D7;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
  }
  
  .logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: white;
  }
  
  .policy-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .policy-content h1 {
    font-size: 24px;
    color: #0078D7;
    margin-bottom: 20px;
  }
  
  .policy-content h2 {
    font-size: 18px;
    margin-top: 24px;
    color: #333;
  }
  
  .policy-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
  }
  
  .policy-content a {
    color: #0078D7;
    text-decoration: none;
  }
  
  .policy-content a:hover {
    text-decoration: underline;
  }
  
  .footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin: 40px 0 10px;
  }
  