.policy-page {
    padding-top: 150px;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* Card */
.policy-page .card {
    border-radius: 18px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.policy-page .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Title */
.policy-page h1 {
    font-size: 2.4rem;
    letter-spacing: -0.5px;
    color: #1f2937;
}

/* Last updated */
.policy-page .text-muted {
    font-size: 0.95rem;
}

/* Section */
.policy-page section {
    padding-left: 18px;
    border-left: 4px solid #0d6efd;
    animation: fadeUp 0.6s ease both;
}

.policy-page section:not(:last-child) {
    margin-bottom: 28px;
}

.policy-page section h4 {
    color: #0d6efd;
    margin-bottom: 6px;
}

/* Text */
.policy-page section p,
.policy-page section li {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

/* List */
.policy-page ul {
    padding-left: 18px;
}

.policy-page ul li {
    margin-bottom: 6px;
}

/* Payment list (Bootstrap override nhẹ) */
.policy-page .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DARK MODE (optional) ===== */
body.dark-mode .policy-page {
    background: linear-gradient(135deg, #020617, #020617);
}

body.dark-mode .policy-page .card {
    background: #020617;
    color: #e5e7eb;
}

body.dark-mode .policy-page section {
    border-left-color: #38bdf8;
}

body.dark-mode .policy-page section h4 {
    color: #38bdf8;
}

body.dark-mode .policy-page section p,
body.dark-mode .policy-page section li {
    color: #cbd5f5;
}