.privacy {
    margin-top: 30px;
    max-width: 800px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    .title {
        display: block;
        color: var(--text-color);
        line-height: 150%;
        text-transform: uppercase;
    }
    &.certificate-policy {
        h1, h2 {
            font-weight: 700;
        }
        h1 {
            font-size: 18px;
        }
    }
    .items {
        display: flex;
        flex-direction: column;
        gap: 20px;
        .quest {
            display: flex;
            flex-direction: column;
            gap: 10px;
            h2 {
                font-size: 20px;
            }
            p b {
                all: inherit;
                display: inline-block;
            }
            :where(ul, ol) {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-left: 25px;
                li b {
                    all: inherit;
                    display: inline-block;
                }
            }
        }
    }
    .right img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 1279px) {
    .privacy {
        width: calc(100% - 228px);
        margin-bottom: 70px;
    }
}
@media screen and (max-width: 767px) {
    .privacy {
        gap: 30px;
        width: calc(100% - 52px);
        margin-bottom: 66px;
        .title {
            font-size: 18px;
        }
        .items {
            margin-top: 10px;
        }
    }
}