﻿/* --- Header uy nghiêm --- */
.page-terms-header {
    background-color: var(--page-terms-dark);
    color: #ffffff;
    padding: 4rem 0;
    border-bottom: 5px solid var(--page-terms-primary);
}

.page-terms-header-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 2.2rem;
}

/* --- Cấu trúc nội dung --- */
.page-terms-container {
    position: relative;
    z-index: 10;
}

/* --- Typography & Elements --- */
.page-terms-section-title {
    color: var(--page-terms-dark);
    font-weight: 800; /* Đậm hơn để tạo điểm nhấn hiện đại */
    border-bottom: none; /* Bỏ gạch chân kiểu cũ */
    padding-bottom: 0;
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.5px; /* Khoảng cách chữ hẹp lại kiểu tech */
}

    .page-terms-section-title:first-child {
        gap: 10px;
    }

    .page-terms-section-title i {
        color: var(--page-terms-primary);
        font-size: 1.8rem; /* Icon to hơn một chút */
        background: #f0f4f8; /* Nền mờ cho icon */
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

.page-terms-highlight-box {
    background-color: #fffafb; /* Nền nhạt hơn, tinh tế hơn */
    border: 1px solid #fee2e2;
    border-left: 5px solid var(--page-terms-danger);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.page-terms-highlight-title {
    color: var(--page-terms-danger);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

ul.page-terms-list {
    padding-left: 1.5rem;
}

    ul.page-terms-list li {
        margin-bottom: 0.75rem;
    }
