:root {
      --color-bg-dark: #000;
      --color-card-bg: #0d0d0d;
      --color-cyan: #75f8bc;
      --color-text-light: #F0F9FF;
      --color-text-faint: #94A3B8;
      --shadow-glow: 0 0 15px var(--color-cyan);
      --shadow-text: 0 0 5px rgba(0, 229, 255, 0.5);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--color-bg-dark);
      color: var(--color-text-light);
    }

    main {
      display: flex;
      justify-content: center;
      padding: 60px 20px;
      padding-top: 150px;
    }

    .policy-container {
      background-color: var(--color-card-bg);
      border-radius: 20px;
      padding: 50px;
      max-width: 900px;
      width: 100%;
      box-shadow: var(--shadow-glow);
      border: 1px solid rgba(0, 229, 255, 0.4);
      line-height: 1.8;
    }

    .title-h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--color-cyan);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: var(--shadow-text);
    }

    .section-h2 {
      font-size: 1.8rem;
      margin-top: 40px;
      margin-bottom: 15px;
      border-bottom: 1px solid rgba(0, 229, 255, 0.2);
      padding-bottom: 5px;
    }

    .para {
      font-size: 1rem;
      color: var(--color-text-faint);
      margin-bottom: 15px;
    }

    .list-ol {
      margin-left: 25px;
    }

    .list-li {
      font-size: 1rem;
      color: var(--color-text-faint);
      margin-bottom: 10px;
    }

    a {
      color: var(--color-cyan);
      text-decoration: underline;
      transition: 0.3s;
    }

    a:hover {
      color: var(--color-cyan);
    }


    /* Responsive */
    @media (max-width: 768px) {
      .policy-container {
        padding: 30px;
      }
      .title-h1 {
        font-size: 2rem;
      }
      .section-h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .policy-container {
        padding: 20px;
      }
      .title-h1 {
        font-size: 1.5rem;
      }
    }