/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.privacy-hero {
    background: linear-gradient(135deg, #0f6bcc, #3392FF);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.privacy-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.privacy-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* CONTENT */
.privacy-content {
    padding: 60px 0;
    background: #f8fafc;
}

.card-privacy {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card-privacy:hover {
    transform: translateY(-3px);
}

.card-privacy h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.card-privacy p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* LAST UPDATED */
.last-updated {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 30px;
    }

    .card-privacy {
        padding: 18px;
    }
}