/*====================================
        PRIVACY HERO
====================================*/

.privacy-hero{

    width:100%;

    padding:180px 7% 100px;

    background:#ffffff;

}

.privacy-container{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 450px;

    gap:90px;

    align-items:center;

}

/* Left */

.privacy-talk{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#5B3DF5;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    margin-bottom:28px;

}

.privacy-tag{

    display:inline-block;

    background:#F3F4F6;

    color:#5B3DF5;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;

}

.privacy-content h1{

    font-size:72px;

    font-weight:700;

    color:#111;

    margin-bottom:25px;

    line-height:1.05;

}

.privacy-date{

    display:flex;

    align-items:center;

    gap:12px;

    color:#666;

    font-size:18px;

    margin-bottom:30px;

}

.privacy-date i{

    color:#5B3DF5;

    font-size:22px;

}

.privacy-content p{

    font-size:20px;

    line-height:1.9;

    color:#555;

    max-width:760px;

}

/* Right Card */

.privacy-image{

    display:flex;

    justify-content:center;

}

.privacy-card{

    width:100%;

    max-width:380px;

    padding:55px 45px;

    background:#fff;

    border-radius:28px;

    border:1px solid #ececec;

    box-shadow:0 30px 70px rgba(0,0,0,.08);

    text-align:center;

}

.privacy-card i{

    font-size:70px;

    color:#5B3DF5;

    margin-bottom:25px;

}

.privacy-card h3{

    font-size:30px;

    color:#111;

    margin-bottom:18px;

}

.privacy-card p{

    font-size:17px;

    color:#666;

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

.privacy-container{

grid-template-columns:1fr;

gap:50px;

}

.privacy-image{

order:-1;

}

.privacy-content{

text-align:center;

}

.privacy-content p{

margin:auto;

}

}

@media(max-width:768px){

.privacy-content h1{

font-size:46px;

}

.privacy-content p{

font-size:17px;

}

}
/*==============================
      PRIVACY DETAILS
===============================*/

.privacy-details{

    padding:120px 8%;

    background:#fff;

}

.privacy-details-container{

    max-width:1400px;

    margin:auto;

}

.privacy-title{

    margin-bottom:90px;

    max-width:760px;

}

.privacy-title span{

    color:#5B3DF5;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.privacy-title h2{

    font-size:54px;

    margin:18px 0;

    color:#111;

    line-height:1.1;

}

.privacy-title p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

/* Items */

.privacy-item{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:60px;

    padding:55px 0;

    border-top:1px solid #ececec;

}

.privacy-item:last-child{

    border-bottom:1px solid #ececec;

}

.privacy-number{

    font-size:52px;

    font-weight:700;

    color:#5B3DF5;

    line-height:1;

}

.privacy-content h3{

    font-size:32px;

    color:#111;

    margin-bottom:20px;

}

.privacy-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:18px;

}

.privacy-content ul{

    padding-left:20px;

}

.privacy-content li{

    margin-bottom:14px;

    font-size:17px;

    color:#555;

    line-height:1.8;

}

/* Hover */

.privacy-item{

    transition:.35s;

}

.privacy-item:hover{

    padding-left:15px;

}

/* Responsive */

@media(max-width:768px){

.privacy-item{

grid-template-columns:1fr;

gap:20px;

}

.privacy-number{

font-size:40px;

}

.privacy-title h2{

font-size:38px;

}

}
/*====================================
        PRIVACY CONTACT
====================================*/

.privacy-contact{

    padding:120px 8%;

    background:#f8f9fc;

}

.privacy-contact-box{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.privacy-contact-box span{

    color:#5B3DF5;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

.privacy-contact-box h2{

    font-size:52px;

    margin:20px 0;

    color:#111;

}

.privacy-contact-box>p{

    max-width:760px;

    margin:0 auto 60px;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.privacy-contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.privacy-contact-card{

    background:#fff;

    padding:45px 30px;

    border-radius:22px;

    border:1px solid #ececec;

    transition:.35s;

}

.privacy-contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.privacy-contact-card i{

    font-size:42px;

    color:#5B3DF5;

    margin-bottom:20px;

}

.privacy-contact-card h4{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

.privacy-contact-card p{

    font-size:17px;

    line-height:1.8;

    color:#666;

}

@media(max-width:992px){

    .privacy-contact-grid{

        grid-template-columns:1fr;

    }

    .privacy-contact-box h2{

        font-size:40px;

    }

}