<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: none;
    z-index: 9999;
    border-radius: 8px 8px 0 0; /* Rounded corners only on top */
}

.consent-modal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding-left: 0; /* Ensure no left padding */
    width: 100%; /* Ensures full width */
}


.consent-text-section {
    max-width: 65%;
}

.consent-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.consent-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.consent-buttons {
    margin-right: 100px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.consent-btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.2s ease-in-out;
}

.customize-btn {
    background: #ddd;
    color: #333;
}

.reject-btn {
    background: #0c2f75;
    color: #fff;
}

.accept-btn {
    background: #0c2f75;
    color: #fff;
}

.consent-btn:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consent-modal-content {
        flex-direction: column;
        text-align: center;
    }

    .consent-text-section {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .consent-btn {
        width: 100%;
    }
}

/* Dark Mode */
body.dark .consent-modal {
    background: #222;
}

body.dark .consent-title,
body.dark .consent-text {
    color: #fff;
}

body.dark .customize-btn {
    background: #444;
    color: #fff;
}


/*privacy policy*/

#privacypolicy {
    padding-top: 50px;
    padding-bottom: 70px;
}
#last-updated {
    text-align: right;
}
#privacypolicy h1, #privacypolicy h2, #privacypolicy h3 {
    color: #0c2f75;
    padding-bottom: 10px;
}
#privacypolicy body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4 !important;
    color: #333;
    margin: 0;
    padding: 0;
}
#privacypolicy.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff !important;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
#privacypolicy h1 {
    color: #0c2f75;
    text-align: center;
    border-bottom: 3px solid #0c2f75;
    padding-bottom: 10px;
}
#privacypolicy h2 {
    color: #0c2f75;
    border-left: 4px solid #0c2f75;
    padding-left: 10px;
    margin-top: 25px;
}
#privacypolicy p, ul {
    font-size: 16px;
    line-height: 1.8;
}
#privacypolicy ul {
    padding-left: 20px;
    list-style-type: none;
}

#privacypolicy ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

#privacypolicy ul li::before {
    content: "â€¢"; /* Dotted bullet */
    color: #0c2f75;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}
#privacypolicy .contact {
    font-weight: bold;
    color: #0c2f75;
    padding: 0px !important;
}

</pre></body></html>