/*==========================
    Privacy Hero
===========================*/

.privacy-hero {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    padding: 90px 20px;
    color: #fff;
}

    .privacy-hero h1 {
        font-weight: 700;
    }

    .privacy-hero p {
        font-size: 18px;
    }

/*==========================
    Cards
===========================*/

.privacy-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: .3s;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .privacy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }

    .privacy-card .icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: #2563eb;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .privacy-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .privacy-card p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 0;
    }

/*==========================
    Responsive
===========================*/

@media(max-width:768px) {

    .privacy-hero {
        padding: 70px 15px;
    }

        .privacy-hero h1 {
            font-size: 34px;
        }

        .privacy-hero p {
            font-size: 16px;
        }

    .privacy-card {
        padding: 25px;
    }

        .privacy-card .icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }
}
