.privacy-policy-content{
    padding-top: 80px;
    padding-bottom: 80px;
    strong{
        font-weight: 500;
    }

    ul, ol{
        list-style: initial;
        padding-left: 28px;
        >li{
            font-family: "Noto Sans TC", sans-serif;
            color: var(--color-gray-1);
            font-size: 16px;
            line-height: 1.8;
            font-weight: 350;
            letter-spacing: 2px;
        }
    }
}

@media screen and (width < 768px) {
    .privacy-policy-content{
        padding-top: 60px;
        padding-bottom: 60px;
        ul, ol{
            padding-left: 24px;
            >li{
                font-size: 14px;
            }
        }
    }
}