:root {
      --primary-color: #059669;
      --text-main: #1f2937;
      --bg-body: #f3f4f6;
      --bg-white: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Roboto", sans-serif;
    }

    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      line-height: 1.6;
      display: flex;
      justify-content: center;
    }

    .policy-wrapper {
      width: 100%;
      max-width: 900px;
      background: var(--bg-white);
      min-height: 100vh;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      z-index: 100;
    }

    .header__btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 8px;
      margin-right: 10px;
      color: #4b5563;
    }

    .header__title {
      font-size: 1.2rem;
      font-weight: 700;
      flex: 1;
      text-transform: uppercase;
    }

    .content {
      padding: 25px;
      text-align: justify;
    }

    h2 {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin-top: 35px;
      margin-bottom: 15px;
      border-bottom: 2px solid #f3f4f6;
      padding-bottom: 8px;
      text-transform: uppercase;
    }

    h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-top: 25px;
      margin-bottom: 10px;
      color: #111827;
    }

    p {
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: #4b5563;
    }

    ul {
      margin-left: 20px;
      margin-bottom: 15px;
      color: #4b5563;
    }

    li {
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .highlight-box {
      background: #fff7ed;
      border-left: 4px solid #f97316;
      padding: 18px;
      margin: 25px 0;
      border-radius: 6px;
      font-size: 0.95rem;
      color: #9a3412;
      line-height: 1.6;
    }

    .highlight-box strong {
      color: #c2410c;
    }

    /* Desktop Responsive */
    @media (min-width: 768px) {
      body {
        padding: 40px 20px;
        align-items: flex-start;
      }

      .policy-wrapper {
        border-radius: 16px;
        min-height: auto;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
      }

      .header {
        padding: 20px 30px;
        border-radius: 16px 16px 0 0;
      }

      .header__title {
        font-size: 1.4rem;
      }

      .content {
        padding: 40px 50px;
        font-size: 1.05rem;
      }

      h2 {
        font-size: 1.5rem;
        margin-top: 45px;
      }
    }