/* ==========================================================
   Privacy Policy Section
========================================================== */

.pp-section{

    padding:140px 24px 120px;

    background:#F6F8F7;

}

.pp-container{

    max-width:920px;

    margin:0 auto;

}


/* ==========================================================
   Hero
========================================================== */

.pp-hero{

    text-align:center;

    margin-bottom:70px;

}

.pp-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:999px;

    background:#DDF3E5;

    color:#2E9B57;

    font-family:"Inter",sans-serif;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:22px;

}

.pp-title{

    margin:0;

    font-family:"Inter",sans-serif;

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:800;

    line-height:1.1;

    color:#1D2433;

}

.pp-highlight{

    color:#2E9B57;

}

.pp-description{

    max-width:680px;

    margin:24px auto;

    font-family:"Inter",sans-serif;

    font-size:1.08rem;

    line-height:1.9;

    color:#7D879C;

}

.pp-updated{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 20px;

    border-radius:999px;

    background:#FFFFFF;

    border:1px solid rgba(29,36,51,.08);

    font-family:"Inter",sans-serif;

    font-size:.92rem;

    font-weight:600;

    color:#1D2433;

}


/* ==========================================================
   Content
========================================================== */

.pp-content{

    display:flex;

    flex-direction:column;

    gap:26px;

}


/* ==========================================================
   Cards
========================================================== */

.pp-card{

    background:#FFFFFF;

    border-radius:28px;

    padding:50px;

    border:1px solid rgba(29,36,51,.06);

    box-shadow:

        0 10px 30px rgba(18,38,63,.05);

}


/* ==========================================================
   Typography
========================================================== */

.pp-card h2{

    margin:0 0 20px;

    font-family:"Inter",sans-serif;

    font-size:1.65rem;

    font-weight:700;

    color:#1D2433;

}

.pp-card h3{

    margin:32px 0 16px;

    font-family:"Inter",sans-serif;

    font-size:1.2rem;

    font-weight:650;

    color:#1D2433;

}

.pp-card p{

    margin:0 0 10px;

    font-family:"Inter",sans-serif;

    font-size:1rem;

    line-height:1.9;

    color:#5F687B;

}

.pp-card p:last-child{

    margin-bottom:0;

}


/* ==========================================================
   Lists
========================================================== */

.pp-card ul{

    margin:20px 0;

    padding-left:22px;

}

.pp-card li{

    margin-bottom:12px;

    font-family:"Inter",sans-serif;

    line-height:1.9;

    color:#5F687B;

}


/* ==========================================================
   Links
========================================================== */

.pp-card a{

    color:#2E9B57;

    text-decoration:none;

    font-weight:600;

}


/* ==========================================================
   Card Hover
========================================================== */

.pp-card{

    position:relative;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.pp-card:hover{

    transform:translateY(-4px);

    border-color:rgba(46,155,87,.15);

    box-shadow:
        0 22px 50px rgba(18,38,63,.08);
}


/* ==========================================================
   Top Accent
========================================================== */

.pp-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#2E9B57;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .35s ease;

}

.pp-card:hover::before{

    transform:scaleX(1);

}


/* ==========================================================
   Section Heading
========================================================== */

.pp-card h2{

    position:relative;

    padding-bottom:18px;

    margin:0 0 12px;

}

.pp-card h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:65px;

    height:3px;

    border-radius:999px;

    background:#2E9B57;

}


/* ==========================================================
   Lists
========================================================== */

.pp-card ul{

    list-style:none;

    padding:0;

    margin:18px 0;

}

.pp-card li{

    display:flex;

    align-items:flex-start;

    gap:14px;

}

.pp-card li::before{

    content:"";

    width:8px;

    height:8px;

    margin-top:11px;

    border-radius:50%;

    background:#2E9B57;

    flex-shrink:0;

}


/* ==========================================================
   Strong
========================================================== */

.pp-card strong{

    color:#1D2433;

    font-weight:700;

}


/* ==========================================================
   Links
========================================================== */

.pp-card a{

    transition:
        color .3s ease;

}

.pp-card a:hover{

    color:#25844A;

    text-decoration:underline;

}


/* ==========================================================
   Reveal Animation
========================================================== */

.pp-reveal{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s cubic-bezier(.22,.61,.36,1),
        transform .8s cubic-bezier(.22,.61,.36,1);

}

.pp-visible{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================================
   Blocks Inside Card
========================================================== */

.pp-block{

    padding:0 0 24px;

    margin:0 0 24px;

    border-bottom:1px solid rgba(29,36,51,.08);

}

.pp-block:last-child{

    padding-bottom:0;

    margin-bottom:0;

    border-bottom:none;

}

/* ==========================================================
   Tablet
========================================================== */

@media(max-width:992px){

    .pp-section{

        padding:120px 22px 90px;

    }

    .pp-card{

        padding:36px;

    }

}


/* ==========================================================
   Mobile
========================================================== */

@media(max-width:768px){

    .pp-section{

        padding:100px 18px 80px;

    }

    .pp-hero{

        margin-bottom:50px;

    }

    .pp-title{

        font-size:2.4rem;

    }

    .pp-description{

        font-size:1rem;

    }

    .pp-card{

        padding:28px 24px;

        border-radius:22px;

    }

    .pp-card h2{

        font-size:1.6rem;

    }

    .pp-card p{

        font-size:.96rem;

        line-height:1.75;

    }

}


/* ==========================================================
   Small Mobile
========================================================== */

@media(max-width:480px){

    .pp-card{

        padding:24px 20px;

    }

    .pp-title{

        font-size:2rem;

    }

    .pp-updated{

        font-size:.85rem;

        padding:9px 16px;

    }

}


/* ==========================================================
   Print
========================================================== */

@media print{

    .pp-section{

        padding:0;

        background:#FFFFFF;

    }

    .pp-card{

        box-shadow:none;

        border:1px solid #DDD;

        page-break-inside:avoid;

    }

}

/* ==========================================================
   Privacy Policy Contact Links
========================================================== */

.pp-card a{

    color:#2E9B57;

    text-decoration:none;

    font-weight:600;

    position:relative;

}

.pp-card a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-2px;

    width:0;

    height:2px;

    background:#2E9B57;

    transition:width .3s ease;

}

.pp-card a:hover::after{

    width:100%;

}