    body {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
      background: radial-gradient(circle at top left, #1a1a1a, #0d0d0d);
      color: #f5f5f5;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .page-container {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(10px);
      padding: 60px 80px;
      box-sizing: border-box;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 0 20px rgba(127, 90, 240, 0.1);
      transition: all 0.3s ease;
    }

    .page-container:hover {
      box-shadow: inset 0 0 40px rgba(127, 90, 240, 0.3);
    }

    h1, h2 {
      color: #7f5af0;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    h1 {
      font-size: 2.4rem;
      margin-bottom: 10px;
      border-bottom: 2px solid rgba(127, 90, 240, 0.4);
      padding-bottom: 10px;
    }

    h2 {
      font-size: 1.4rem;
      margin-top: 35px;
      color: #9d8df1;
    }

    p, li {
      color: #ddd;
      font-size: 15px;
      margin-bottom: 10px;
    }

    a {
      color: #7f5af0;
      text-decoration: none;
      transition: 0.2s;
    }

    a:hover {
      color: #9d8df1;
      text-decoration: underline;
    }

    ul {
      margin-left: 25px;
      list-style: none;
    }

    ul li::before {
      content: "•";
      color: #7f5af0;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }

    .updated-date {
      color: #aaa;
      font-size: 14px;
      margin-bottom: 25px;
    }

    /* Scrollbar Design */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #7f5af0, #5036b0);
      border-radius: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #111;
    }

    /* Responsive Layout */
    @media (max-width: 992px) {
      .page-container {
        padding: 40px 30px;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.2rem;
      }

      p, li {
        font-size: 14px;
      }
    }

    @media (max-width: 600px) {
      .page-container {
        padding: 30px 20px;
        border-radius: 0;
      }

      h1 {
        font-size: 1.7rem;
        text-align: center;
      }

      h2 {
        text-align: center;
      }

      p, ul {
        text-align: justify;
      }
    }