/* ================================
   Page: Chính sách bảo mật
   File: assets/css/page-bao-mat.css
================================ */

.policy-page {
    background: #f6f7f9;
    color: #111827;
}

.policy-page .container {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
}

.policy-hero {
    padding: 64px 0 48px;
    background:
        radial-gradient(circle at top right, rgba(220, 38, 38, 0.14), transparent 36%),
        linear-gradient(135deg, #111827 0%, #1f2937 58%, #111827 100%);
    color: #fff;
}

.policy-hero__inner {
    max-width: 820px;
}

.policy-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fecaca;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.policy-hero__title {
    margin: 18px 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.policy-hero__desc {
    max-width: 760px;
    margin: 0;
    color: #d1d5db;
    font-size: 17px;
    line-height: 1.75;
}

.policy-section {
    padding: 56px 0 72px;
}

.policy-content {
    padding: 38px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.policy-updated {
    display: inline-flex;
    margin: 0 0 20px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.policy-content h2 {
    margin: 30px 0 12px;
    color: #111827;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 850;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    margin: 0 0 14px;
    color: #374151;
    font-size: 16px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 0 0 18px;
    padding-left: 0;
    list-style: none;
}

.policy-content li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: #374151;
    font-size: 16px;
    line-height: 1.7;
}

.policy-content li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #dc2626;
}

.policy-contact-box {
    margin: 18px 0 6px;
    padding: 20px;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.policy-contact-box p {
    margin-bottom: 8px;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .policy-page .container {
        width: min(100% - 24px, 980px);
    }

    .policy-hero {
        padding: 48px 0 38px;
    }

    .policy-section {
        padding: 38px 0 52px;
    }

    .policy-content {
        padding: 22px;
        border-radius: 20px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 15px;
    }
}