﻿/* --- Header --- */
.page-privacy-header {
    background: linear-gradient(135deg, var(--page-privacy-dark) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 5rem 0;
    border-bottom: 4px solid var(--page-privacy-secure);
    position: relative;
    overflow: hidden;
}

    /* Họa tiết nền grid mờ tạo cảm giác công nghệ mã hóa */
    .page-privacy-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.5;
        pointer-events: none;
    }

.page-privacy-header-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

/* --- Cấu trúc Container --- */
.page-privacy-container {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    max-width: 960px; /* Độ rộng chuẩn để đọc văn bản dài */
}

.page-privacy-card {
    padding-top: 30px;
}

/* --- Elements & Typography --- */
.page-privacy-section-title {
    color: var(--page-privacy-dark);
    font-weight: 800;
    padding-bottom: 0;
    margin-bottom: 1.75rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.5px;
}

    .page-privacy-section-title:first-child {
        margin-top: 0;
    }

    .page-privacy-section-title i {
        color: var(--page-privacy-secure);
        font-size: 1.6rem;
        background: rgba(5, 150, 105, 0.08); /* Nền xanh lục nhạt */
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

/* Hộp cảnh báo độc lập & Miễn trừ */
.page-privacy-firewall-box {
    background-color: #f8fafc;
    border: 1px solid var(--page-privacy-border);
    border-left: 6px solid var(--page-privacy-dark);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    position: relative;
}

    .page-privacy-firewall-box::after {
        content: '\F552'; /* bi-shield-lock-fill */
        font-family: bootstrap-icons;
        position: absolute;
        top: -20px;
        right: 30px;
        font-size: 2.5rem;
        color: var(--page-privacy-dark);
        background: #fff;
        border-radius: 50%;
        padding: 5px;
        border: 1px solid var(--page-privacy-border);
    }

.page-privacy-firewall-title {
    color: var(--page-privacy-dark);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.page-privacy-strong-text {
    color: #0f172a;
    font-weight: 700;
}

ul.page-privacy-list {
    padding-left: 1.2rem;
    list-style-type: none; /* Bỏ bullet mặc định để dùng icon */
}

    ul.page-privacy-list li {
        margin-bottom: 1rem;
        position: relative;
        padding-left: 1.8rem;
    }

        ul.page-privacy-list li::before {
            content: '\F26E'; /* bi-check2 */
            font-family: bootstrap-icons;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--page-privacy-secure);
            font-size: 1.2rem;
            font-weight: bold;
        }
