
/* =========================
CONTAINER
========================= */

.privacy-container{
    width:100%;
}

/* =========================
HERO
========================= */

.privacy-hero{
    margin-bottom:30px;
}

.privacy-hero-wrapper{

    background:linear-gradient(135deg,#f5f3ff,#ede9fe);

    border-radius:36px;

    padding:55px;

    display:grid;

    grid-template-columns:0.8fr 1.2fr;

    gap:50px;

    align-items:center;
}

.privacy-hero-left{

    display:flex;

    justify-content:center;

    align-items:center;
}

.privacy-big-icon{

    width:260px;

    height:260px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:110px;

    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.privacy-hero-right h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

    font-family:'Poppins',sans-serif;
}

.privacy-hero-right h1 span{
    color:#6d28d9;
}

.privacy-updated{

    display:flex;

    align-items:center;

    gap:10px;

    color:#6d28d9;

    font-weight:600;

    margin-bottom:24px;
}

.privacy-hero-right p{

    font-size:21px;

    line-height:1.9;

    color:#64748b;
}

/* =========================
GRID
========================= */

.privacy-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-bottom:35px;
}

/* =========================
CARD
========================= */

.privacy-card{

    background:white;

    border-radius:30px;

    padding:30px;

    border:1px solid #ede9fe;

    transition:0.3s ease;
}

.privacy-card:hover{
    transform:translateY(-5px);
}

.privacy-card-top{

    display:flex;

    align-items:flex-start;

    gap:18px;
}

.privacy-number{

    min-width:50px;

    height:50px;

    border-radius:18px;

    background:#6d28d9;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:20px;
}

.privacy-card h3{

    font-size:32px;

    margin-bottom:14px;

    font-family:'Poppins',sans-serif;
}

.privacy-card p,
.privacy-card li{

    color:#64748b;

    line-height:1.9;

    font-size:17px;
}

.privacy-card ul{

    margin-top:10px;

    padding-left:20px;
}

.privacy-highlight-box{

    margin-top:24px;

    background:#f5f3ff;

    padding:18px 20px;

    border-radius:18px;

    color:#6d28d9;

    font-weight:600;

    line-height:1.8;
}

/* =========================
AI SECTION
========================= */

.privacy-ai-section{

    background:linear-gradient(135deg,#ede9fe,#f5f3ff);

    border-radius:35px;

    padding:40px;

    margin-bottom:35px;
}

.privacy-ai-section h2{

    font-size:42px;

    margin-bottom:18px;

    font-family:'Poppins',sans-serif;
}

.privacy-ai-section p{

    color:#64748b;

    line-height:1.8;

    font-size:18px;
}

.privacy-ai-points{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:30px;
}

.privacy-ai-box{

    background:white;

    border-radius:24px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.privacy-ai-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#ede9fe;

    color:#6d28d9;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 18px;

    font-size:34px;
}

.privacy-ai-box h4{

    font-size:24px;

    margin-bottom:12px;

    font-family:'Poppins',sans-serif;
}

.privacy-ai-box p{

    color:#64748b;

    line-height:1.8;

    font-size:16px;
}

/* =========================
CONTACT BOX
========================= */

.privacy-contact-box{

    background:white;

    border-radius:28px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.privacy-contact-box h3{

    font-size:34px;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;
}

.privacy-contact-box p{

    color:#64748b;

    line-height:1.8;
}

.privacy-contact-btn{

    background:#6d28d9;

    color:white;

    padding:18px 30px;

    border-radius:18px;

    font-weight:600;

    transition:0.3s ease;

    display:inline-flex;

    justify-content:center;

    align-items:center;
}

.privacy-contact-btn:hover{
    background:#5b21b6;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.privacy-hero-wrapper{

    grid-template-columns:1fr;

    text-align:center;
}

.privacy-grid{
    grid-template-columns:1fr;
}

.privacy-ai-points{
    grid-template-columns:1fr;
}

.privacy-contact-box{

    flex-direction:column;

    text-align:center;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.privacy-hero-wrapper{

    padding:34px 22px;

    border-radius:26px;
}

.privacy-big-icon{

    width:170px;

    height:170px;

    font-size:72px;
}

.privacy-hero-right h1{

    font-size:42px;

    line-height:1.2;
}

.privacy-updated{
    font-size:14px;
}

.privacy-hero-right p{

    font-size:16px;

    line-height:1.8;
}

/* CARD */

.privacy-grid{
    gap:18px;
}

.privacy-card{

    padding:22px 18px;

    border-radius:24px;
}

.privacy-card-top{
    gap:14px;
}

.privacy-number{

    min-width:42px;

    height:42px;

    border-radius:14px;

    font-size:16px;
}

.privacy-card h3{

    font-size:24px;

    margin-bottom:10px;
}

.privacy-card p,
.privacy-card li{

    font-size:15px;

    line-height:1.8;
}

.privacy-highlight-box{

    padding:14px 15px;

    border-radius:16px;

    font-size:14px;
}

/* AI */

.privacy-ai-section{

    padding:28px 20px;

    border-radius:24px;
}

.privacy-ai-section h2{

    font-size:30px;
}

.privacy-ai-section p{

    font-size:15px;
}

.privacy-ai-box{

    padding:22px 18px;

    border-radius:20px;
}

.privacy-ai-icon{

    width:55px;

    height:55px;

    font-size:24px;
}

.privacy-ai-box h4{

    font-size:22px;
}

.privacy-ai-box p{

    font-size:14px;
}

/* CONTACT */

.privacy-contact-box{

    padding:24px 18px;

    border-radius:24px;
}

.privacy-contact-box h3{

    font-size:28px;
}

.privacy-contact-box p{

    font-size:15px;
}

.privacy-contact-btn{

    width:100%;
}

}
