/* --- Thiết lập chung --- */
.service-policy-section {
    width: 100%;
    background: linear-gradient(to right, #4D1210 0%, #000000 100%);
    margin-top: 30px;
    padding: 30px 0;
    color: #ffffff;
    overflow: hidden;
}

.policy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Từng khối chính sách --- */
.policy-item {
    flex: 1; /* Chia đều 3 cột */
    display: flex;
    align-items: center;
    padding: 0 50px;
    position: relative; /* Để định vị đường kẻ dọc */
}

/* Đường kẻ dọc ngăn cách (Divider) */
.policy-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%; /* Thụt vào một chút so với chiều cao */
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3); /* Màu trắng mờ */
}

/* --- Icon --- */
.policy-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Màu icon trắng */
}

/* Tùy chỉnh kích thước SVG nếu cần */
.policy-icon svg {
    width: 40px;
    height: 40px;
}

/* --- Text --- */
.policy-text h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.policy-text p {
    font-size: 13px;
    margin: 0;
    opacity: 0.8; /* Màu chữ mờ hơn tiêu đề chút */
    font-weight: 300;
    line-height: 1.4;
}

/* --- Responsive Mobile --- */
@media (max-width: 992px) {
    .policy-wrapper {
        flex-direction: column; /* Xếp dọc trên mobile */
        align-items: flex-start;
    }

    .policy-item {
        width: 100%;
        padding: 15px 0;
        /* Thêm đường kẻ ngang ngăn cách các mục trên mobile */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Ẩn đường kẻ dọc của PC */
    .policy-item:not(:last-child)::after {
        display: none;
    }

    /* Bỏ đường kẻ ngang ở mục cuối cùng */
    .policy-item:last-child {
        border-bottom: none;
    }

    .policy-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .policy-text h3 {
        font-size: 14px;
    }
}