
    :root {
      --primary: #1e40af;
      --primary-dark: #1e3a8a;
      --secondary: #3b82f6;
      --accent: #60a5fa;
      --text: #1f2937;
      --text-light: #6b7280;
      --bg: #f8fafc;
      --white: #ffffff;
      --border: #e5e7eb;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
      --radius: 12px;
      --radius-sm: 8px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .privacy-page {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      color: var(--text);
      line-height: 1.7;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
    }

    /* Header */
    .privacy-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--white);
      padding: 1.5rem 1rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .privacy-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
      opacity: 0.5;
    }

    .privacy-header-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .privacy-header h1 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .privacy-header p {
      font-size: 1.1rem;
      opacity: 0.9;
      font-weight: 300;
    }

    /* Main Container */
    .privacy-container {
      max-width: 800px;
      margin: -1.5rem auto 0;
      padding: 0 1rem 2rem;
      position: relative;
      z-index: 2;
    }

    .privacy-main-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      margin-bottom: 2rem;
    }

    .privacy-card-content {
      padding: 1.5rem;
    }

    /* Typography */
    .privacy-intro {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      border-radius: var(--radius-sm);
      border-left: 4px solid var(--secondary);
    }

    .privacy-section {
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .privacy-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .privacy-section h2 {
      color: var(--primary);
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .privacy-section h2::before {
      content: '';
      width: 4px;
      height: 24px;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      border-radius: 2px;
      flex-shrink: 0;
    }

    .privacy-section p {
      margin-bottom: 1rem;
      color: var(--text);
    }

    .privacy-section ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }

    .privacy-section li {
      position: relative;
      padding: 0.75rem 0 0.75rem 2rem;
      margin-bottom: 0.5rem;
      background: rgba(59, 130, 246, 0.05);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--secondary);
      transition: var(--transition);
    }

    .privacy-section li:hover {
      background: rgba(59, 130, 246, 0.1);
      transform: translateX(2px);
    }

    .privacy-section li::before {
      content: '✓';
      position: absolute;
      left: 0.75rem;
      top: 0.75rem;
      color: var(--secondary);
      font-weight: bold;
      font-size: 0.9rem;
    }

    .privacy-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-sm);
      padding: 1.5rem;
      margin: 1.5rem 0;
      position: relative;
      overflow: hidden;
    }

    .privacy-highlight-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
    }

    .privacy-contact-grid {
      display: grid;
      gap: 1rem;
      margin-top: 1rem;
    }

    .privacy-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .privacy-contact-item:hover {
      border-color: var(--secondary);
      box-shadow: var(--shadow-sm);
    }

    .privacy-contact-icon {
      width: 20px;
      height: 20px;
      color: var(--secondary);
      flex-shrink: 0;
    }

    /* Links */
    .privacy-page a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .privacy-page a:hover {
      color: var(--primary);
    }

    .privacy-page a:focus {
      outline: 2px solid var(--secondary);
      outline-offset: 2px;
      border-radius: 2px;
    }

    /* Strong text */
    .privacy-page strong {
      color: var(--primary);
      font-weight: 600;
    }

    /* Last updated */
    .privacy-last-updated {
      text-align: center;
      color: var(--text-light);
      font-size: 0.9rem;
      font-style: italic;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    /* Footer */
    .privacy-footer {
      text-align: center;
      color: var(--text-light);
      font-size: 0.9rem;
      padding: 2rem 1rem;
      background: var(--white);
      border-top: 1px solid var(--border);
      margin-top: 2rem;
    }

    /* Responsive Design */
    @media (min-width: 640px) {
      .privacy-container {
        padding: 0 2rem 2rem;
      }
      
      .privacy-card-content {
        padding: 2rem;
      }
      
      .privacy-contact-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 768px) {
      .privacy-header {
        padding: 2rem 1rem 2.5rem;
      }
      
      .privacy-container {
        margin-top: -2rem;
      }
      
      .privacy-section h2 {
        font-size: 1.4rem;
      }
      
      .privacy-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Print Styles */
    @media print {
      .privacy-page {
        background: white;
        font-size: 12pt;
        line-height: 1.5;
      }
      
      .privacy-header {
        background: none;
        color: black;
        padding: 1rem 0;
      }
      
      .privacy-main-card {
        box-shadow: none;
        border: 1px solid #ccc;
      }
      
      .privacy-footer {
        display: none;
      }
      
      .privacy-page a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .privacy-main-card {
      animation: fadeInUp 0.6s ease-out;
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
      :root {
        --text: #f9fafb;
        --text-light: #d1d5db;
        --bg: #111827;
        --white: #1f2937;
        --border: #374151;
      }
      
      .privacy-page {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
      }
    }
