body.policy-page {
    background-color: #f9f9f9;
}

body.policy-page .row-main h1 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    color: #111 !important;
    margin-bottom: 24px;
}

body.policy-page .row-main h2 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;

    margin-top: 48px;
    margin-bottom: 16px;
    position: relative;
}

body.policy-page .row-main h3 {
    font-size: var(--text-lg);
    line-height: 1.4;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
}

body.policy-page .row-main h2::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 6px;
    width: 4px;
    height: 16px;
    background-color: #e3342f;
}

body.policy-page .row-main p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}


body.policy-page .row-main ul {
    margin: 16px 0 24px 20px;
    padding: 0;
}

body.policy-page .row-main li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}


body.policy-page .row-main a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

body.policy-page .row-main a:hover {
    color: #e3342f;
}


body.policy-page .row-main hr {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, .08);
    margin: 40px 0;
}

body.policy-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
}

body.policy-page thead th {
    text-align: left;
    font-weight: 700;
    color: #111;
    padding: 12px 14px;
    background-color: #f3f3f3;
    border-bottom: 2px solid rgba(0, 0, 0, .15);
}

body.policy-page tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    color: #444;
    vertical-align: top;
}

body.policy-page tbody tr:nth-child(even) {
    background-color: #fafafa;
}

body.policy-page tbody tr:hover {
    background-color: rgba(0, 0, 0, .035);
}

body.policy-page table p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

body.policy-page table a {
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.policy-page table a:hover {
    color: #e3342f;
}


@media (max-width: 768px) {
    body.policy-page .row-main h1 {
        font-size: 24px;
    }

    body.policy-page .row-main h2 {
        font-size: 18px;
        margin-top: 36px;
    }

    body.policy-page .row-main h2::before {
        left: -10px;
        height: 14px;
    }

    body.policy-page .row-main p,
    body.policy-page li {
        font-size: 14px;
    }
}