.th-tos-section {
      background: #ffffff;
      padding: 80px 20px 140px 20px;
      font-family: 'Segoe UI', Arial, sans-serif;
      color: #1B1F29;
    }

    .th-container {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }

    /* Sidebar */
    .th-policy-sidebar {
      flex: 0 0 250px;
      position: sticky;
      top: 100px;
      align-self: flex-start;
      height: max-content;
    }

    .th-policy-sidebar nav {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .th-policy-sidebar a {
      display: block;
      padding: 10px 14px 10px 18px;
      font-size: 15px;
      font-weight: 500;
      color: #2b2f35;
      text-decoration: none;
      border-left: 3px solid transparent;
      border-radius: 8px;
      transition: all 0.25s ease;
    }

    .th-policy-sidebar a:hover {
      color: #0057ff;
      background: #f3f7ff;
      border-left-color: #0057ff;
    }

/* Active link – black background with slow shining sweep */
.th-policy-sidebar a.active {
  position: relative;
  display: block;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  border-left: 4px solid #000000;
  overflow: hidden;
  transition: all 0.25s ease;
  z-index: 1;
}

/* Shining overlay (slower animation) */
.th-policy-sidebar a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 10s ease-in-out infinite; /* slowed from 5s to 10s */
}

/* Keyframes – smooth diagonal sweep */
@keyframes shineSweep {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Optional hover glow */
.th-policy-sidebar a.active:hover {
  box-shadow: 0 0 25px rgba(255,255,255,0.25);
}


    /* Main Content */
    .th-policy-content {
      flex: 1;
      min-width: 280px;
      max-width: 920px;
    }

    h1 {
      font-size: 30px;
      font-weight: 700;
      color: #1B1F29;
      margin: 0 0 22px 0;
      border-bottom: 2px solid #e9ebf0;
      padding-bottom: 12px;
    }

    h2 {
      font-size: 20px;
      color: #1B1F29;
      font-weight: 700;
      margin: 32px 0 14px 0;
    }

    p {
      font-size: 15px;
      line-height: 1.9;
      margin: 0 0 14px 0;
      color: #1B1F29;
    }

    a {
      color: #0057FF;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .muted {
      color: #6b6f76;
      font-size: 14px;
      margin-bottom: 18px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .th-container {
        gap: 30px;
      }
      .th-policy-sidebar {
        flex: 0 0 220px;
      }
    }

    @media (max-width: 768px) {
      .th-container {
        flex-direction: column;
        gap: 40px;
      }
      .th-policy-sidebar {
        display: none !important;
      }
      .th-policy-content {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 10px;
      }
    }
			


  #whatsapp-button {
    position: fixed;
    left: 20px; /* Adjust spacing as needed */
    bottom: 20px; /* Adjust spacing as needed */
    display: none; /* Initially hidden */
    z-index: 1000;
  }

  #whatsapp-button img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  #whatsapp-button img:hover {
    transform: scale(1.1);
  }