    /*privacy css*/
    :root {
        --teal: #38d39b;
        --orange: #ffa200;
        --black: #0a0a0a;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: #fff;
        color: var(--black);
    }

    ::-webkit-scrollbar {
        width: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--teal);
        border-radius: 2px;
    }

    .nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        padding: 18px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav img {
        height: 32px;
        width: auto;
        filter: invert(1) brightness(0);
    }

    .nav a.back {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--black);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        opacity: .6;
        transition: opacity .2s;
    }

    .nav a.back:hover {
        opacity: 1;
    }

    .hero-strip {
        background: #31343c;
        padding: 72px 60px 60px;
    }

    .hero-strip .eyebrow {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: 13px;
        color: var(--teal);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .hero-strip h1 {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: clamp(28px, 4vw, 52px);
        color: #fff;
        line-height: 1.2;
        max-width: 700px;
    }

    .hero-strip .updated {
        font-size: 13px;
        color: rgba(255, 255, 255, .45);
        margin-top: 20px;
        font-weight: 500;
    }

    .content {
        max-width: 820px;
        margin: 0 auto;
        padding: 72px 40px 100px;
    }

    .content section {
        margin-bottom: 52px;
    }

    .content h2 {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: 20px;
        color: var(--black);
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--teal);
        display: inline-block;
    }

    .content p {
        font-size: 15px;
        line-height: 1.85;
        color: #444;
        margin-bottom: 14px;
    }

    .content ul {
        padding-left: 20px;
        margin-bottom: 14px;
    }

    .content ul li {
        font-size: 15px;
        line-height: 1.85;
        color: #444;
        margin-bottom: 8px;
    }

    .content a {
        color: var(--teal);
        text-decoration: none;
    }

    .content a:hover {
        text-decoration: underline;
    }

    .highlight-box {
        background: #f7fdf9;
        border-left: 3px solid var(--teal);
        border-radius: 0 12px 12px 0;
        padding: 20px 24px;
        margin-bottom: 24px;
    }

    .highlight-box p {
        margin: 0;
        color: #333;
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 24px;
        font-size: 14px;
    }

    .data-table th {
        background: #31343c;
        color: #fff;
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: 13px;
        text-align: left;
        padding: 12px 16px;
    }

    .data-table th:first-child {
        border-radius: 8px 0 0 0;
    }

    .data-table th:last-child {
        border-radius: 0 8px 0 0;
    }

    .data-table td {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        color: #444;
        line-height: 1.6;
        vertical-align: top;
    }

    .data-table tr:last-child td {
        border-bottom: none;
    }

    .data-table tr:nth-child(even) td {
        background: #fafafa;
    }

    footer {
        border-top: 1px solid rgba(0, 0, 0, .08);
        padding: 32px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        background: #fff;
    }

    footer img {
        height: 30px;
        width: auto;
        filter: invert(1) brightness(0);
        opacity: .5;
    }

    footer p {
        font-size: 13px;
        color: rgba(0, 0, 0, .4);
    }

    @media(max-width: 768px) {
        .nav {
            padding: 16px 24px;
        }

        .hero-strip {
            padding: 52px 24px 44px;
        }

        .content {
            padding: 48px 24px 72px;
        }

        footer {
            padding: 24px;
        }

        .data-table {
            display: block;
            overflow-x: auto;
        }
    }

    /*privacy css End*/


    /* terms css*/

    :root {
        --teal: #38d39b;
        --orange: #ffa200;
        --black: #0a0a0a;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: #fff;
        color: var(--black);
    }

    ::-webkit-scrollbar {
        width: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--teal);
        border-radius: 2px;
    }

    .nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
        padding: 18px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav img {
        height: 32px;
        width: auto;
        filter: invert(1) brightness(0);
    }

    .nav a.back {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--black);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        opacity: .6;
        transition: opacity .2s;
    }

    .nav a.back:hover {
        opacity: 1;
    }

    .hero-strip {
        background: #31343c;
        padding: 72px 60px 60px;
    }

    .hero-strip .eyebrow {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: 13px;
        color: var(--teal);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .hero-strip h1 {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: clamp(28px, 4vw, 52px);
        color: #fff;
        line-height: 1.2;
        max-width: 700px;
    }

    .hero-strip .updated {
        font-size: 13px;
        color: rgba(255, 255, 255, .45);
        margin-top: 20px;
        font-weight: 500;
    }

    .content {
        max-width: 820px;
        margin: 0 auto;
        padding: 72px 40px 100px;
    }

    .content section {
        margin-bottom: 52px;
    }

    .content h2 {
        font-family: 'Comfortaa', cursive;
        font-weight: 700;
        font-size: 20px;
        color: var(--black);
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--teal);
        display: inline-block;
    }

    .content p {
        font-size: 15px;
        line-height: 1.85;
        color: #444;
        margin-bottom: 14px;
    }

    .content ul {
        padding-left: 20px;
        margin-bottom: 14px;
    }

    .content ul li {
        font-size: 15px;
        line-height: 1.85;
        color: #444;
        margin-bottom: 8px;
    }

    .content a {
        color: var(--teal);
        text-decoration: none;
    }

    .content a:hover {
        text-decoration: underline;
    }

    .highlight-box {
        background: #f7fdf9;
        border-left: 3px solid var(--teal);
        border-radius: 0 12px 12px 0;
        padding: 20px 24px;
        margin-bottom: 24px;
    }

    .highlight-box p {
        margin: 0;
        color: #333;
    }

    footer {
        border-top: 1px solid rgba(0, 0, 0, .08);
        padding: 32px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        background: #fff;
    }

    footer img {
        height: 30px;
        width: auto;
        filter: invert(1) brightness(0);
        opacity: .5;
    }

    footer p {
        font-size: 13px;
        color: rgba(0, 0, 0, .4);
    }

    @media(max-width: 768px) {
        .nav {
            padding: 16px 24px;
        }

        .hero-strip {
            padding: 52px 24px 44px;
        }

        .content {
            padding: 48px 24px 72px;
        }

        footer {
            padding: 24px;
        }
    }

    /* terms end */