body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(120deg, #f5f7fa, #eef1f5);
}

header, nav {
  background: #111;
  color: #fff;
}

h1, h2, h3 {
  line-height: 1.2;
}

    :root {
      --primary: #1e3a8a;
      --secondary: #0f172a;
      --accent: #f59e0b;
      --bg-light: #f8fafc;
      --text-dark: #1f2933;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: linear-gradient(120deg, #f8fafc, #eef2ff);
      color: var(--text-dark);
      line-height: 1.7;
    }

    /* ===== HEADER ===== */
    header {
      background: #ffffffcc;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-container {
      max-width: 1200px;
      margin: auto;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo img {
      height: 50px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: var(--secondary);
      font-weight: 500;
    }

    nav a:hover {
      color: var(--primary);
    }

    /* ===== MAIN CONTENT ===== */
    main {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }

    .policy-box {
      background: white;
      border-radius: 14px;
      padding: 3rem;
      box-shadow: 0 15px 40px rgba(0,0,0,0.05);
      animation: fadeUp 0.6s ease;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h1 {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    h2 {
      margin-top: 2.2rem;
      color: var(--secondary);
      font-size: 1.3rem;
    }

    p {
      margin-top: 0.7rem;
      font-size: 1rem;
      color: #374151;
    }

    ul {
      margin-top: 0.7rem;
      padding-left: 1.2rem;
    }

    ul li {
      margin-bottom: 0.5rem;
    }

    /* ===== FOOTER ===== */
    footer {
      margin-top: 4rem;
      background: #020617;
      color: #e5e7eb;
      padding: 2rem 1rem;
      text-align: center;
    }

    footer a {
      color: #93c5fd;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .policy-box {
        padding: 2rem 1.5rem;
      }

      nav ul {
        justify-content: center;
        gap: 1rem;
      }
    }