 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right, #f5f7fa, #e4ecf5);
      color: #333;
      line-height: 1.8;
      padding: 40px 20px;
    }

    .policy-container {
      max-width: 950px;
      margin: auto;
      background: #ffffff;
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border-top: 6px solid #088178;
      animation: fadeIn 0.6s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h1 {
      text-align: center;
      font-size: 42px;
      color: #088178;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 35px;
      font-size: 16px;
    }

    .section {
      margin-bottom: 30px;
      padding: 20px;
      border-radius: 12px;
      background: #f9fbfc;
      transition: 0.3s ease;
    }

    .section:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    }

    h2 {
      color: #088178;
      margin-bottom: 10px;
      font-size: 24px;
    }

    p {
      color: #555;
      font-size: 16px;
    }

    ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    ul li {
      margin-bottom: 10px;
      color: #444;
    }

    a {
      color: #088178;
      font-weight: 600;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .contact-box {
      background: #088178;
      color: white;
      padding: 20px;
      border-radius: 12px;
      margin-top: 15px;
    }

    .contact-box p {
      color: white;
    }

    .footer-note {
      margin-top: 40px;
      text-align: center;
      font-size: 14px;
      color: #777;
      border-top: 1px solid #ddd;
      padding-top: 20px;
    }

    @media (max-width: 768px) {
      .policy-container {
        padding: 30px 20px;
      }

      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 20px;
      }
    }


    /* ===== Dark Mode ===== */
[data-theme="dark"] body {
  background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
  color: #e2e8f0;
}

[data-theme="dark"] .policy-container {
  background: rgba(17, 24, 39, 0.85);
  border-top-color: #38bdf8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] h1 {
  color: #38bdf8;
}

[data-theme="dark"] h2 {
  color: #38bdf8;
}

[data-theme="dark"] .subtitle {
  color: #94a3b8;
}

[data-theme="dark"] p {
  color: #cbd5e1;
}

[data-theme="dark"] ul li {
  color: #cbd5e1;
}

[data-theme="dark"] .section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .section:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .footer-note {
  color: #94a3b8;
  border-top-color: rgba(255, 255, 255, 0.1);
}