﻿/*==================================================
LEGAL PAGE
==================================================*/

.policy-page {
    padding: 100px 0;
    background: #f8fbff;
}

.policy-wrapper {
    margin: auto;
    background: #fff;
    border-radius: 18px;
    padding: 60px;
    box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

    .policy-header h1 {
        font-size: 48px;
        font-weight: 700;
        color: #111827;
        margin: 15px 0;
        line-height: 1.2;
    }

.last-updated {
    color: #6b7280;
    font-size: 15px;
}

/*==================================================
CONTENT
==================================================*/

.policy-content {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

    .policy-content p {
        margin-bottom: 24px;
    }

    .policy-content strong {
        color: #111827;
        font-weight: 600;
    }

    /*==================================================
HEADINGS
==================================================*/

    .policy-content h2 {
        position: relative;
        margin: 50px 0 20px;
        padding-bottom: 12px;
        font-size: 32px;
        color: #111827;
    }

        .policy-content h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: #2563eb;
            border-radius: 50px;
        }

    .policy-content h3 {
        font-size: 24px;
        margin: 35px 0 15px;
        color: #1f2937;
    }

    /*==================================================
LISTS
==================================================*/

    .policy-content ul {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }

    .policy-content li {
        position: relative;
        padding-left: 38px;
        margin-bottom: 16px;
    }

        .policy-content li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 24px;
            height: 24px;
            background: #2563eb;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

    /*==================================================
LINKS
==================================================*/

    .policy-content a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

        .policy-content a:hover {
            text-decoration: underline;
        }

    /*==================================================
BLOCKQUOTE
==================================================*/

    .policy-content blockquote {
        margin: 40px 0;
        padding: 25px 30px;
        background: #eef5ff;
        border-left: 5px solid #2563eb;
        border-radius: 10px;
        font-style: italic;
    }

    /*==================================================
TABLE
==================================================*/

    .policy-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 35px 0;
    }

    .policy-content th {
        background: #2563eb;
        color: #fff;
        padding: 15px;
        text-align: left;
    }

    .policy-content td {
        padding: 15px;
        border: 1px solid #e5e7eb;
    }

/*==================================================
CONTACT BOX
==================================================*/

.policy-contact {
    margin-top: 50px;
    padding: 35px;
    background: #f8fbff;
    border-left: 5px solid #2563eb;
    border-radius: 12px;
}

    .policy-contact p {
        margin-bottom: 14px;
    }

/*==================================================
HR
==================================================*/

.policy-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 50px 0;
}

/*==================================================
RESPONSIVE
==================================================*/

@@media(max-width:992px) {

    .policy-page {
        padding: 70px 0;
    }

    .policy-wrapper {
        padding: 40px;
    }

    .policy-header h1 {
        font-size: 38px;
    }

    .policy-content h2 {
        font-size: 28px;
    }
}

@@media(max-width:768px) {

    .policy-page {
        padding: 50px 0;
    }

    .policy-wrapper {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .policy-header {
        margin-bottom: 35px;
    }

        .policy-header h1 {
            font-size: 32px;
        }

    .policy-content {
        font-size: 16px;
        line-height: 1.8;
    }

        .policy-content h2 {
            font-size: 24px;
        }

        .policy-content h3 {
            font-size: 20px;
        }

    .policy-contact {
        padding: 25px;
    }
}

@@media(max-width:480px) {

    .policy-wrapper {
        padding: 25px 18px;
    }

    .policy-header h1 {
        font-size: 28px;
    }

    .policy-content {
        font-size: 15px;
    }

        .policy-content h2 {
            font-size: 22px;
        }
}
