<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables */
:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --border-radius: 8px;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgb(29 59 107 / 34%), rgb(93 139 169 / 70%)), url(/images/bg_image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
}


/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, .h1 {
    font-weight: 700;
    line-height: 1.2;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Cards */
.card {
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow);
    }

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 2rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

/* Tables */
.table {
    --bs-table-hover-bg: rgba(0,0,0,.02);
}

    .table th {
        font-weight: 600;
        background-color: rgba(0,0,0,.02);
    }

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 30px;
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.shadow {
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark);
}

    footer a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: rgba(255,255,255,.75);
        }

/* Responsive Utilities */
.hide-on-small-screen {
    display: none;
}

@media (min-width: 768px) {
    .hide-on-small-screen {
        display: block;
    }
}

/* Form Elements */
.form-control {
    border-radius: var(--border-radius);
}

/* Custom Classes */
.logoX {
    font-size: 1.5rem;
    font-weight: 700;
}

    .logoX em {
        font-style: normal;
        color: var(--primary);
    }

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}






/* Browser Mockup */
/* Browser Mockup */
.browser-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    overflow: hidden;
    margin-top: 20px;
}

.browser-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

    .browser-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
    }

.browser-address {
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.browser-content {
    height: 300px;
    position: relative;
    background: url('/images/website_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consent-banner-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.preview-text {
    margin-bottom: 15px;
}

    .preview-text h5 {
        margin-bottom: 10px;
    }

    .preview-text p {
        font-size: 14px;
        opacity: 0.9;
    }

.preview-buttons {
    display: flex;
    gap: 10px;
}








/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
}

.pricing-highlight {
    background: #19a429;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

    .pricing-amount .currency {
        font-size: 1.5rem;
        vertical-align: super;
        margin-right: 0.25rem;
    }

    .pricing-amount .period {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.7);
    }

.pricing-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards on Pricing Page */
.pricing-features .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pricing-features .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* Pricing List Items */
.list-unstyled li {
    padding: 0.5rem 0;
}

    .list-unstyled li i {
        width: 20px;
    }













/* Contact Card in Hero */
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
}

.contact-icon {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

    .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
        border-color: var(--primary);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Company Info Card */
.card h3.h6 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Contact Links */
.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-info a:hover {
        color: var(--primary-dark);
    }

/* Success Message */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}
</pre></body></html>