   :root{
        --primary-color: #1E3A8A;
        --text-primary: #777777;
        --border-color: #CCCCCC;
        --border-light-color:#D7D7D7;
        --primary-dark:#1d4ed8;
        --transition: all 0.3s ease;
   }
  
  .privacy-card{
        padding:45px 50px;
        animation:fadeUp 0.8s ease;
    }
    @keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

    .privacy-title{
        font-size:2rem;
        font-weight:500;
        color:#000000;
        margin-bottom:25px;
    }

    .privacy-content p{
        color:var(--text-primary);
        font-size:1.313rem;
        font-weight: 400;
        /* line-height:1.8; */
        margin-bottom:22px;
    }

    .privacy-content a{
        color:var(--primary-dark);
        text-decoration:none;
        font-weight:400;
    }

    .privacy-content a:hover{
        text-decoration:underline;
    }

    /* Tablet */
    @media (max-width: 991px){
        .privacy-card{
            padding:35px 30px;
        }

        .privacy-title{
            font-size:1.8rem;
        }
    }

    /* Mobile */
    @media (max-width: 576px){
        body{
            padding:20px 10px;
        }

        .privacy-card{
            padding:25px 20px;
        }

        .privacy-title{
            font-size:1.5rem;
            margin-bottom:20px;
        }

        .privacy-content p{
            font-size:15px;
            line-height:1.7;
        }
    }

    /* Privacy poloicy hero end */

 