﻿#policy-page {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.policy-header {
    background: linear-gradient(160deg, #003366, #1a4b84);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .policy-header h1 {
        font-size: 50px;
        margin-bottom: 10px;
        font-weight:800;
    }

    .policy-header p {
        font-size: 16px;
        opacity: 0.9;
    }

.policy-content {
    padding: 50px 20px;
    background: #f9fafb;
}

.policy-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.policy-nav {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 20px;
    height: fit-content;
/*    position: sticky;
    top: 20%;
    height: fit-content;*/
}

    .policy-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .policy-nav li {
        padding: 10px 12px;
        border-radius: 6px;
        margin-bottom: 8px;
        cursor: pointer;
        color: #333;
        transition: background 0.2s;
    }

        .policy-nav li.active {
            background: #ffece3;
            color: #e67e22;
            font-weight: bold;
        }

        .policy-nav li:hover {
            background: #f3f3f3;
        }

    .policy-details {
        flex: 3;
        background: #fff;
        border-radius: 10px;
        padding: 25px 30px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
.policy-section-header {
    display: flex;
    align-items: center; /* canh giữa theo chiều dọc */
    gap: 15px; /* khoảng cách giữa icon và chữ */
    margin-bottom: 20px; margin-top:20px
}
            .policy-section-header i {
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
          
                border-radius: 15px;
                font-size: 30px;
            }
                .policy-section-header a {
                    width: 70px;
                    height: 70px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 15px;
                    font-size: 30px;
                }
    .policy-details h1 {
    
        font-weight: bold;
    }

    .policy-details h3, .policy-details h4 {
        margin-top: 20px;
        color: #1a4b84;
    }
.check-list ul {
    list-style: none;
    
}
.check-list li::before {
    list-style: none;
    content: "✔";
    color: #28a745;
    margin-right: 6px;
}
.none-ul-point ul {
    list-style: none; /* bỏ dấu chấm */
    padding-left: 0; /* bỏ thụt lề trái */
    margin: 0;
}
.policy-section {
    margin-top: 20px;
}

.policy-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.policy-item {
    flex: 1 1 45%;
    min-width: 250px;
}

    .policy-item b {
        display: block;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .policy-item p {
        margin: 0;
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }



.refund-box {
    background: #fff7f2;
    border-left: 4px solid #ff9900;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.note-box {
    background: #eef5ff;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.contact-box {
    background: #f1f8f6;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}
.policy-nav li {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    color: #333;
    transition: background 0.2s, color 0.2s;
}

    .policy-nav li.active {
        background: #ffece3;
        color: #e67e22;
        font-weight: bold;
    }
.cookie-box {
    background-color: #f7fcff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-top: 20px;
}

    .cookie-box h3 {
        margin-bottom: 15px;
        color: #1a1a1a;
    }

.cookie-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

    .cookie-item .icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .cookie-item.blue .icon {
        background-color: #e9f1ff;
        color: #2563eb;
    }

    .cookie-item.green .icon {
        background-color: #e6f9ed;
        color: #22c55e;
    }

    .cookie-item.orange .icon {
        background-color: #fff4e5;
        color: #f59e0b;
    }

    .cookie-item .text b {
        display: block;
        font-weight: 600;
        color: #1a1a1a;
    }

    .cookie-item .text p {
        margin: 0;
        font-size: 14px;
        color: #555;
    }

.note-box {
    background-color: #eef5ff;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

    .note-box b {
        color: #1d4ed8;
    }

@media (max-width: 768px) {
    .policy-grid {
        flex-direction: column;
    }

    .policy-nav {
        order: 2;
    }

    .policy-details {
        order: 1;
    }
}
