body{
    margin: 0;
    padding: 0;
    background-color: rgb(241, 241, 241);
}

/*hero section*/

.privacy-policy-section {
    display: flex;
    align-items: center;
    height: auto;
    padding: 50px;
    background-color: rgb(10, 29, 51);
    margin:0 ;
    margin-bottom: 30px;
    color: #fff;
}

.h-left-content {
    flex: 1;
    padding-right: 40px;
}

.h-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-right-content img {
    width: 70%;
    height: auto;
    display: block;
    margin:0 auto;
}

.stph1 {
    font-size: 64px;  
    font-weight: bold;
    margin-bottom: 70px;
    font-family: "Montserrat", sans-serif;
}

.h-features {
    display: flex;
}

.h-feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.h-feature i {
    margin-right: 10px;
    font-size: 40px;
    color: #fff;
}

.h-feature span{
  font-family: 'inter',sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .privacy-policy-section {
      flex-direction: column-reverse;
      padding: 30px;
      text-align: center;
  }

  .h-left-content,
  .h-right-content {
      flex: 1;
      padding-right: 0;
      width: 100%;
      box-sizing: border-box;
  }

  .h-right-content img {
      width: 70%;
      margin-left: auto;
      margin-right: auto;
  }

  .stph1 {
      font-size: 40px;
      text-align: center;
  }

  .h-features {
      flex-direction: column;
      align-items: center;
  }

  .h-feature {
      margin: 15px 0;
  }

}

/*privacy plicy*/

.privacy-container{
    margin-left: 20px;
    margin-right: 20px;
}

.privacy-container h2{
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 29, 51);
    font-family: 'inter',sans-serif;
}

.privacy-container h4{
    font-size: 20px;
    color: rgb(10, 29, 51);
    font-weight: bold;
    font-family: 'inter',sans-serif;
}

.privacy-container p{
    font-size: 16px;
    color:rgb(10, 29, 51);
    line-height: 1.6;
    font-family: 'inter',sans-serif;
}

.privacy-container ul li{
    font-size: 18px;
    color: rgb(10, 29, 51);
    line-height: 1.6;
    font-family: 'inter',sans-serif;
}

@media (max-width: 768px) {
    .terms-container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .terms-container h2 {
        font-size: 22px;
    }

    .terms-container h4 {
        font-size: 18px;
    }

    .terms-container p,
    .terms-container ul li {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .terms-container h2 {
        font-size: 20px;
    }

    .terms-container h4 {
        font-size: 16px;
    }

    .terms-container p,
    .terms-container ul li {
        font-size: 14px;
        line-height: 1.4;
    }
}