*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow: auto;
}
#Privacy-Policy{
    background:#12a14e11;
    padding-top: 50px;

}
.container {
    /* background-color: #fff; */
    
    max-width: 85%;
    margin: 0 auto;
    padding: 50px;
    /* border-radius: 15px; */
    backdrop-filter: blur(10px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    margin-top: 48px;
    margin-bottom: 48px;
    border-radius: 30px;
    /* background-color: #ffffff3d; */
    line-height: 30px;
}


h1 {
    text-align: center;
    font-size: 40px;
    color: #003b73;
}

p{
    margin-bottom: 32px;

}

ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
ul i{
    color: #003b73;
    /* margin-bottom: 10px; */
}

li {
    margin-bottom: 8px;
}


section#Privacy-Policy {
  position: relative;
  z-index: 1;

  max-width: 100%;
  margin: 0 auto;
}

#heading {
  text-align: center;
  margin-bottom: 40px;
}

/* #heading h1 {
  font-size: 2.5rem;
  color: #333;
} */

#content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.589);
  padding: 30px;
  border-radius: 16px;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.container p, .container li {
  font-size: 20px;
  line-height: 30px;
}
.container li{
  display: flex;
  align-items: center;
}

.container h2, .container h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2f855a;
}
.container h3{
  color: #003b73;
}
.container h4{
  font-size: 20px;
}

i.fa-solid {
  margin-right: 8px;
  color: #003b73;
}


@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 32px;
    }
    .container{
      max-width: 100%;
      /* text-align: justify; */
    }
    .container li{
      display: block;
    }
    li{
      margin-bottom: 15px;
    }
}






/* ======BUBBLE========== */


  .bubble-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 6s infinite ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(0.5);
      border-radius: 50%;
    }
    50% {
      transform: translate(-50%, -50%) scale(0.7);
      border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
    }
    100% {
      transform: translate(-50%, -50%) scale(0.5);
      border-radius: 50%;
    }
  }

 
  





  /* =====FOOTER=========== */
  .footer {
    background-color: #16a34a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 150px;
    font-size: 20px;
  }
  
  .footer-right span {
    color: #c6f6d5; 
  }