/* =========================
PRIVACY POLICY PAGE CSS
========================= */

.privacy-hero {
    position: relative;
    height: 200px;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.privacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, .45));
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}

.privacy-hero-content span {
    color: #10b981;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.privacy-hero-content h1 {
    color: #fff;
    font-size: 60px;
    margin: 15px 0;
    font-weight: 800;
}

.privacy-hero-content h1 span {
    color: #10b981;
}

.privacy-hero-content p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.8;
}

/* WRAPPER */

.privacy-wrapper {
    background: #f4f7fb;
    padding: 80px 5%;
}

.privacy-card {
    max-width: 1150px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

/* BLOCKS */

.privacy-block {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ececec;
}

.privacy-block:last-child {
    border: none;
}

.privacy-block h2 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
}

.privacy-block p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}

/* LIST */

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.privacy-list li i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* CTA */

.privacy-cta {
    margin-top: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 60px 30px;
    border-radius: 24px;
    text-align: center;
}

.privacy-cta h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.privacy-cta p {
    color: rgba(255, 255, 255, .92);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-size: 16px;
}

.privacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #10b981;
    padding: 18px 35px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.privacy-btn:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .privacy-hero {
        height: 200px;
    }

    .privacy-hero-content h1 {
        font-size: 42px;
    }

    .privacy-card {
        padding: 35px 22px;
    }

    .privacy-block h2 {
        font-size: 24px;
    }

    .privacy-cta h2 {
        font-size: 30px;
    }

    .privacy-btn {
        width: 100%;
        justify-content: center;
    }

}