body {
      background-color: #121212;
      color: #fff;
      font-family: 'Alexandria', sans-serif;
    }

    .privacy-section {
      padding: 60px 20px;
    }

    .privacy-title {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      color: var(--primary-color);
    }

    .privacy-box {
      background-color: #27272F;
      border: 1px solid #27272F;
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 25px;
      transition: all 0.3s ease;
    }

    .privacy-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(188, 251, 108, 0.2);
    }

    .privacy-box h5 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 15px;
    }

    .privacy-box p {
      color: #ccc;
      line-height: 1.7;
    }
#seeMoreBtn {
  padding: 12px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  color: #000;
  background: linear-gradient(135deg, #BCFB6C, #d8ffab);
  box-shadow: 0 4px 15px rgba(188, 251, 108, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

#seeMoreBtn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
  transform: rotate(45deg);
  transition: all 0.7s ease;
  z-index: 0;
}

#seeMoreBtn:hover::before {
  top: 100%;
  left: 100%;
}

#seeMoreBtn span {
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: pulse 1.8s infinite;
}
#seeLessBtn {
  padding: 12px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  color: #000;
  background: linear-gradient(135deg, #BCFB6C, #d8ffab);
  box-shadow: 0 4px 15px rgba(188, 251, 108, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
#seeLessBtn::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
  transform: rotate(45deg);
  transition: all 0.7s ease;
  z-index: 0;
}
#seeLessBtn:hover::before{
  top: 100%;
  left: 100%;
}
#seeLessBtn span{
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: pulse 1.8s infinite;
}