/* =========================================================
   BASE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.my-container {
    max-width: 1920px;
    margin: auto;
    padding: 0px 15px;
}


/* =========================================================
   POLICY PAGE  (Privacy Policy + Terms and Conditions)
   ========================================================= */
.policy-page {
    background-color: #000000;
    padding: 150px 0px 80px;
}

/* --- page heading --- */
.policy-page .head {
    padding-bottom: 40px;
    border-bottom: 1px solid #1E1E1E;
}

.policy-page .head h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.policy-page .head h1 span {
    color: #00C9BD;
}

.policy-page .head .txt {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #E5E5E5;
    max-width: 780px;
    margin-top: 15px;
}

.policy-page .head .date {
    display: inline-block;
    margin-top: 22px;
    padding: 9px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #00C9BD;
    background: rgba(0, 201, 189, 0.08);
    border: 1px solid rgba(0, 201, 189, 0.35);
    border-radius: 50px;
}

/* --- content --- */
.policy-page .content {
    display: grid;
    gap: 20px;
    margin-top: 45px;
}

.policy-page .content .box {
    padding: 30px 32px;
    background: #0B0B0B;
    border: 1px solid #1E1E1E;
    border-radius: 14px;
    transition: border-color 0.3s ease;
}

.policy-page .content .box:hover {
    border-color: rgba(0, 201, 189, 0.4);
}

.policy-page .content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.policy-page .content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #B5B5B5;
    margin-bottom: 8px;
}

.policy-page .content p:last-child {
    margin-bottom: 0px;
}

.policy-page .content a {
    color: #00C9BD;
    text-decoration: none;
}

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

/* highlighted note */
.policy-page .content .note {
    margin-top: 16px;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 28px;
    color: #E5E5E5;
    background: rgba(0, 201, 189, 0.06);
    border-left: 3px solid #00C9BD;
    border-radius: 0px 8px 8px 0px;
}

/* bullet list */
.policy-page .content .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 30px;
    margin-top: 14px;
    list-style: none;
}

.policy-page .content .list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    color: #B5B5B5;
}

.policy-page .content .list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0px;
    width: 7px;
    height: 7px;
    background: #00C9BD;
    border-radius: 50%;
}

/* numbered list */
.policy-page .content .num-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
    counter-reset: item;
    list-style: none;
}

.policy-page .content .num-list li {
    position: relative;
    padding-left: 42px;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    color: #B5B5B5;
    counter-increment: item;
}

.policy-page .content .num-list li::before {
    content: counter(item);
    position: absolute;
    top: 3px;
    left: 0px;
    width: 26px;
    height: 26px;
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    color: #00C9BD;
    background: rgba(0, 201, 189, 0.1);
    border-radius: 50%;
}


/* =========================================================
   MEDIA QUERIES
   ========================================================= */

/* ---------- Laptop ---------- */
@media (max-width: 1199.98px) {
    .policy-page .head h1 {
        font-size: 38px;
    }

    .policy-page .content .box {
        padding: 26px 26px;
    }
}

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
    .policy-page {
        padding: 120px 0px 60px;
    }

    .policy-page .head h1 {
        font-size: 32px;
    }

    .policy-page .content h4 {
        font-size: 20px;
    }
}

/* ---------- Mobile landscape ---------- */
@media (max-width: 767.98px) {
    .policy-page {
        padding: 100px 0px 50px;
    }

    .policy-page .head h1 {
        font-size: 28px;
    }

    .policy-page .content .list {
        grid-template-columns: 1fr;
    }
}

/* ---------- Mobile portrait ---------- */
@media (max-width: 575.98px) {
    .policy-page .head h1 {
        font-size: 24px;
    }

    .policy-page .content .box {
        padding: 22px 20px;
    }

    .policy-page .content h4 {
        font-size: 18px;
    }

    .policy-page .content p {
        font-size: 15px;
        line-height: 28px;
    }

    .policy-page .content .num-list li {
        padding-left: 36px;
    }
}