:root {
    --cc-font-family: 'Inter', -apple-system, sans-serif;
    --cc-modal-border-radius: 12px;
    --cc-btn-border-radius: 8px;
    --cc-z-index: 2000;

    /* Dark blue / navy, aligned with index.html */
    --cc-primary-color: #0F172A;
    --cc-btn-primary-bg: #0F172A;
    --cc-btn-primary-color: #ffffff;
    --cc-btn-primary-border-color: #0F172A;

    --cc-btn-secondary-bg: #1E293B;
    --cc-btn-secondary-color: #ffffff;
    --cc-btn-secondary-border-color: #1E293B;

    --cc-separator-border-color: #e2e8f0;
    --cc-cookie-category-block-bg: #f1f5f9;

    /* Footer specifically */
    --cc-footer-bg: #0F172A;
    --cc-footer-color: rgba(255, 255, 255, 0.8);
}

/* Ensure links are visible and follow brand colors */
#cc-main a {
    color: #0F172A;
    text-decoration: underline;
    font-weight: 500;
}

#cc-main a:hover {
    color: #1E40AF;
}

/* Specific fix for footer links on dark background */
#cc-main .cm__footer a,
#cc-main .pm__footer a {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 0.8125rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

#cc-main .cm__footer a:hover,
#cc-main .pm__footer a:hover {
    opacity: 1;
    border-bottom-color: #ffffff;
}

#cc-main .pm__section-title {
    color: #0F172A;
    font-weight: 700;
}

#cc-main .cm__title {
    color: #0F172A;
}
