/* ==========================================================================
   PVGT STANDALONE PRIVACY POLICY CSS
   ========================================================================== */

/* CORE VARIABLES */
:root {
    --brand-navy: #0E2A47; 
    --pvgt-blue: #0868B2;
    --pvgt-red: #AB1921;
    --white: #FFFFFF;
    --text-main: #000000; 
    --blue-600: #0056b3; 
    
    --footer-bg-mode: #e6f0fa;
    --footer-text-mode: #333333;
    --footer-heading-mode: #0056B3;
    --footer-accred-heading-mode: #0056B3;
    --footer-accred-text-mode: #555555;
    --footer-wave-1: rgba(0,0,0,0.03);
    --footer-wave-2: rgba(0,0,0,0.02);
    --footer-arc-line: rgba(0,0,0,0.03);

    --nav-text-color: #FFFFFF;
    --nav-hover-line: #FFFFFF;
    --transition-sharp: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.3s ease;
}

body.dark-mode {
    --white: #0a1128;
    --text-main: #e0e0e0; 
    --nav-text-color: #FFFFFF;
    --nav-hover-line: #FFFFFF;

    --footer-bg-mode: #060F26;
    --footer-text-mode: #bee0ff;
    --footer-heading-mode: #00afff;
    --footer-accred-heading-mode: #00afff;
    --footer-accred-text-mode: #bee0ff;
    --footer-wave-1: rgba(255,255,255,0.028);
    --footer-wave-2: rgba(255,255,255,0.016);
    --footer-arc-line: rgba(255,255,255,0.03);
}

/* BASE RESETS & TYPOGRAPHY */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: Helvetica, Arial, sans-serif; 
    background-color: var(--white); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
    transition: background-color 0.4s ease, color 0.4s ease; 
}
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { 
    color: var(--brand-navy); 
    font-style: oblique; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
}
p, a, li, input, button { font-style: normal; }
i[class^="fa-"] { font-style: normal !important; }

/* FIXED LOGO WATERMARK BACKGROUND */
.watermark-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.08; 
    z-index: 0;
    pointer-events: none; 
    transition: opacity 0.4s ease;
}
.watermark-bg img { width: 100%; height: auto; object-fit: contain; }
.watermark-day { display: block; }
.watermark-dark { display: none; }
body.dark-mode .watermark-day { display: none; }
body.dark-mode .watermark-dark { display: block; }
body.dark-mode .watermark-bg { opacity: 0.06; }

nav, .internal-hero, .privacy-section, footer { position: relative; z-index: 10; }

/* NAVIGATION */
nav {
    display: flex; justify-content: space-between; align-items: center;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--transition-sharp);
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    --nav-text-color: #FFFFFF;
    --nav-hover-line: #FFFFFF;
}
body.dark-mode nav {
    background: rgba(14, 42, 71, 0.1);
    --nav-text-color: #FFFFFF; 
    --nav-hover-line: #FFFFFF;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.7); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --nav-text-color: var(--brand-navy);
    --nav-hover-line: var(--blue-600);
    padding: 0.5rem 5%; 
}
body.dark-mode nav.scrolled {
    background: rgba(14, 42, 71, 0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    --nav-text-color: #FFFFFF;
    --nav-hover-line: #FFFFFF;
}

.logo-box { display: flex; align-items: center; justify-content: center; transition: var(--transition-sharp); }
.nav-logo { height: 60px; width: auto; }

.white-logo { display: block; }
.color-logo { display: none; }
nav.scrolled .white-logo { display: none; }
nav.scrolled .color-logo { display: block; }
body.dark-mode .white-logo { display: block; }
body.dark-mode .color-logo { display: none; }
body.dark-mode nav.scrolled .white-logo { display: block; }
body.dark-mode nav.scrolled .color-logo { display: none; }

.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; font-size: 15px; text-transform: uppercase; font-weight: 700; }
.nav-links a { color: var(--nav-text-color); padding: 0.5rem 0; position: relative; transition: var(--transition-sharp); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background-color: var(--nav-hover-line); transition: var(--transition-sharp); }
.nav-links a:hover::after { width: 100%; }

.mobile-sign-in-li, .menu-toggle { display: none; }

/* SIGN IN BUTTON */
.sign-in-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    background-color: #BDBDBD; border: none; font-size: 14px; text-transform: uppercase; font-weight: 800; color: #0E2A47;
    padding: 0.8rem 1.8rem; border-radius: 50px; cursor: pointer; transition: var(--transition-sharp);
}
.sign-in-btn:hover { background-color: #0868B2; color: #f2f2f2; }
body.dark-mode .sign-in-btn:hover { background-color: #f2f2f2; color: #0868B2; }

/* HOME BUTTONS */
.mobile-home-btn {
    display: none;
    color: var(--nav-text-color);
    font-size: 1.2rem;
    transition: var(--transition-sharp);
    margin-right: 0.8rem;
}
.mobile-home-btn:hover { color: var(--nav-hover-line); }

/* THEME TOGGLE */
.theme-switch-wrapper { display: flex; align-items: center; margin-right: 0.5rem; }
.theme-icon-toggle { cursor: pointer; display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; position: relative; }
.theme-icon-toggle input { display: none; }
.icon-container { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 1.4rem; }
.sun-icon { color: #FF7F00; position: absolute; transition: transform 0.4s ease, opacity 0.4s ease; }
.moon-stars { color: #F4F6F0; position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.5); transition: transform 0.4s ease, opacity 0.4s ease; }
.moon-stars .moon-icon { font-size: 1.4rem; }
.moon-stars .star { position: absolute; color: #FFF; }
.moon-stars .star-1 { font-size: 6px; top: -2px; left: -8px; }
.moon-stars .star-2 { font-size: 4px; bottom: 0; right: -5px; }
input:checked ~ .icon-container .sun-icon { opacity: 0; transform: rotate(90deg) scale(0.5); }
input:checked ~ .icon-container .moon-stars { opacity: 1; transform: rotate(0) scale(1); }

/* INTERNAL HERO SECTION */
.internal-hero {
    min-height: 25vh; 
    height: auto; 
    padding: 120px 5% 40px; 
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    position: relative; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}
.internal-hero .hero-content-wrapper { 
    position: relative; 
    z-index: 10; 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.internal-hero .hero-content { 
    max-width: 800px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    text-align: left;
}
.internal-hero .section-tag { 
    color: #26BAFC !important; 
    letter-spacing: 2px; 
    margin-bottom: 0.5rem; 
    font-size: 1rem; 
    font-weight: 800; 
    font-style: oblique; 
    text-transform: uppercase; 
}
.internal-hero .page-title { 
    font-size: clamp(2.5rem, 4.5vw, 4rem); 
    line-height: 1.1; 
    margin-bottom: 0; 
    text-transform: uppercase; 
    color: #f2f2f2 !important; 
}

/* HERO GRAPHIC */
.internal-hero .hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(150px, 18vw, 250px); 
    height: clamp(150px, 18vw, 250px);
    font-size: clamp(4rem, 7vw, 9rem);
    color: #020024;
}

/* PRIVACY DOCUMENT SECTION */
.privacy-section { padding: 4rem 5%; } 
.privacy-container { max-width: 1400px; margin: 0 auto; padding: 2rem 0; }
.page-desc-wrapper { margin-bottom: 3.5rem; }
.page-desc { 
    font-size: 1.2rem; 
    max-width: 1000px; 
    font-style: normal; 
    line-height: 1.6;
    color: #000000 !important; 
}
body.dark-mode .page-desc { color: #f5f5f5 !important; }

.privacy-block h2, .privacy-block p, .privacy-list li, .contact-highlight {
    font-family: Helvetica, Arial, sans-serif;
    color: #000000 !important;
}
body.dark-mode .privacy-block h2,
body.dark-mode .privacy-block p,
body.dark-mode .privacy-list li,
body.dark-mode .contact-highlight,
body.dark-mode .privacy-section {
    color: #f5f5f5 !important;
}

.privacy-effective-date { 
    font-style: normal; 
    font-weight: 800; 
    margin-bottom: 2.5rem; 
    font-size: 1.1rem; 
    color: var(--pvgt-red) !important; 
}
body.dark-mode .privacy-effective-date { color: var(--pvgt-red) !important; }

.privacy-block { margin-bottom: 2.5rem; }
.privacy-block h2 {
    font-weight: 800; font-style: oblique; font-size: 1.8rem; margin-bottom: 1.2rem; text-transform: uppercase;
    color: #020568 !important; 
}
body.dark-mode .privacy-block h2 { color: #f5f5f5 !important; }
.privacy-block p { font-style: normal; font-size: 1.2rem; line-height: 1.8; margin-bottom: 1.2rem; }

.highlight { 
    color: #0072ff !important; 
    font-weight: 600; 
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
}
body.dark-mode .highlight { color: #00E5FF !important; }

.privacy-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }
.privacy-list li {
    font-style: normal;
    font-size: 1.2rem; 
    line-height: 1.7;
    margin-bottom: 1rem;
    display: grid;
    align-items: start;
}
.privacy-list.type-1 li { grid-template-columns: 25px max-content 1fr; gap: 0.5rem 1rem; }
.privacy-list.type-2 li { grid-template-columns: 25px 1fr; gap: 1rem; }
.privacy-list .list-marker { padding-top: 0.2rem; }
.privacy-list .list-icon { color: var(--pvgt-blue); font-size: 1.1rem; }
body.dark-mode .privacy-list .list-icon { color: #0089ff; }

.privacy-divider { border: 0; height: 1px; background: rgba(14, 42, 71, 0.1); margin: 2.5rem 0; }
body.dark-mode .privacy-divider { background: rgba(255, 255, 255, 0.1); }
.contact-highlight { border-left: 4px solid var(--pvgt-blue); padding: 1.5rem 0 1.5rem 1.5rem; }
body.dark-mode .contact-highlight { border-left-color: #00E5FF; }

/* FOOTER SECTION */
footer { 
    background: var(--footer-bg-mode); 
    color: var(--footer-text-mode); 
    padding: 5rem 5% 1.5rem; 
    font-size: 0.95rem; 
    position: relative; 
    overflow: hidden; 
    transition: background 0.8s ease, color 0.8s ease; 
}
footer > *:not(.footer-wave-bg) { position: relative; z-index: 1; }
.footer-wave-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.footer-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 65%; transition: fill 0.8s ease; }
.footer-wave-1 { fill: var(--footer-wave-1); }
.footer-wave-2 { fill: var(--footer-wave-2); height: 50%; }
.footer-arc-lines { position: absolute; top: 0; right: 0; width: 55%; height: 100%; }
.footer-arc-lines g { stroke: var(--footer-arc-line) !important; transition: stroke 0.8s ease; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 2.5rem; }

/* FOOTER LOGO AND TAGLINE */
.footer-logo-img { 
    width: 200px; height: auto; display: block; margin: 0 0 1.25rem; 
    background-color: transparent; padding: 10px 14px; border-radius: 16px; 
    transition: background-color 0.8s ease;
}
body.dark-mode .footer-logo-img {
    background-color: #FFFFFF;
}

.footer-tagline {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-style: oblique;
    font-size: 1.2rem;
    color: #0E2A47;
    margin: 0;
    max-width: 260px;
    line-height: 1.65;
    transition: color 0.8s ease;
}
body.dark-mode .footer-tagline {
    color: #f2f2f2;
}


.social-links { display: flex; gap: 0.8rem; align-items: center; margin-top: 1.5rem; }
.social-btn { 
    width: 2.5rem; height: 2.5rem; border-radius: 8px; 
    background: rgba(125,125,125,0.06); display: flex; align-items: center; justify-content: center; 
    color: var(--footer-text-mode); font-size: 1.2rem; border: 1px solid rgba(0,0,0,0.1); 
    transition: all var(--t-fast); text-decoration: none !important; 
}
body.dark-mode .social-btn { 
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); 
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn.facebook:hover  { color: #1877F2; background: rgba(24,119,242,0.12); border-color: rgba(24,119,242,0.35); box-shadow: 0 0 14px 3px rgba(24,119,242,0.45); }
.social-btn.instagram:hover { color: #E1306C; background: rgba(225,48,108,0.12); border-color: rgba(225,48,108,0.35); box-shadow: 0 0 14px 3px rgba(225,48,108,0.45); }
.social-btn.whatsapp:hover  { color: #25D366; background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); box-shadow: 0 0 14px 3px rgba(37,211,102,0.45); }
.social-btn.youtube:hover   { color: #FF0000; background: rgba(255,0,0,0.12); border-color: rgba(255,0,0,0.35); box-shadow: 0 0 14px 3px rgba(255,0,0,0.45); }
.social-btn.twitter:hover   { color: var(--text-main); background: rgba(125,125,125,0.10); border-color: rgba(125,125,125,0.30); box-shadow: 0 0 14px 3px rgba(125,125,125,0.25); }
body.dark-mode .social-btn.twitter:hover { color: #fff; background: rgba(231,231,231,0.10); border-color: rgba(231,231,231,0.30); box-shadow: 0 0 14px 3px rgba(231,231,231,0.25); }
.social-btn.linkedin:hover  { color: #0A66C2; background: rgba(10,102,194,0.12); border-color: rgba(10,102,194,0.35); box-shadow: 0 0 14px 3px rgba(10,102,194,0.45); }

.footer-links h3 { 
    color: var(--footer-heading-mode); 
    font-size: 1.2rem; font-weight: 700; letter-spacing: 0.06em; 
    text-transform: uppercase; margin-bottom: 1.25rem; font-style: oblique; transition: color 0.8s ease; 
}
body.dark-mode .footer-links h3 { color: #FFFFFF; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.7rem; }
.footer-links ul li a { 
    color: var(--footer-text-mode); font-size: 1.05rem; font-weight: 500; font-style: normal; 
    transition: color var(--t-fast), padding-left var(--t-fast); 
}
.footer-links ul li a:hover { color: var(--footer-heading-mode); padding-left: 4px; }
body.dark-mode .footer-links ul li a:hover { color: #fff; }

.footer-accreditations { padding: 1.25rem 0 2rem; margin-bottom: 1.75rem; position: relative; }
.footer-accreditations::before { 
    content: ''; display: block; width: 280px; max-width: 60%; height: 0; 
    border-top: 2px dashed rgba(125,125,125,0.28); margin: 0 auto 1.75rem; transition: border-color 0.8s ease; 
}
body.dark-mode .footer-accreditations::before { border-top-color: rgba(255,255,255,0.28); }

.accred-row { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.accred-label { 
    font-size: 0.92rem; font-weight: 700; font-style: oblique; letter-spacing: 0.1em; 
    text-transform: uppercase; color: var(--footer-accred-heading-mode); white-space: nowrap; 
    flex-shrink: 0; transition: color 0.8s ease; 
}
.accred-pipe { color: var(--footer-accred-text-mode); font-size: 1.1rem; flex-shrink: 0; transition: color 0.8s ease; }
.accred-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2.5rem; }
.accred-badge { 
    display: flex; flex-direction: row; align-items: center; gap: 0.75rem; 
    color: var(--footer-accred-text-mode); font-size: 0.75rem; font-style: normal; font-weight: 700; 
    letter-spacing: 0.04em; text-transform: uppercase; transition: color var(--t-fast); 
}
.accred-badge:hover { color: var(--footer-accred-heading-mode); }

.accred-logo-wrap { 
    height: 46px; min-width: 80px; max-width: 120px; padding: 0.5rem 0.9rem; 
    background: rgba(255,255,255,0.92); border-radius: 10px; border: 1px solid rgba(0,0,0,0.1); 
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; 
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.18); 
}
body.dark-mode .accred-logo-wrap { border-color: rgba(255,255,255,0.15); }
.accred-logo-wrap img { height: 28px; width: auto; max-width: 100px; object-fit: contain; }

/* DHL Logo Full Cover Fix */
.accred-logo-dhl { 
    padding: 0; 
    overflow: hidden; 
}
.accred-logo-dhl img { 
    height: 100%; 
    width: 100%; 
    max-width: none;
    object-fit: cover; 
    border-radius: 9px;
}

.accred-badge:hover .accred-logo-wrap { background: #fff; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.accred-badge + .accred-badge { position: relative; }
.accred-badge + .accred-badge::before { 
    content: ''; position: absolute; left: -1.25rem; top: 50%; transform: translateY(-50%); 
    width: 1px; height: 28px; background: rgba(125,125,125,0.15); transition: background 0.8s ease; 
}
body.dark-mode .accred-badge + .accred-badge::before { background: rgba(255,255,255,0.15); }

.footer-bottom { 
    color: var(--footer-text-mode); border-top: 1px solid rgba(0,0,0,0.10); 
    padding-top: 1.5rem; text-align: center; font-size: 0.88rem; font-style: oblique; 
    transition: color 0.8s ease, border 0.8s ease; margin-top: auto; 
}
body.dark-mode .footer-bottom { border-top-color: rgba(255,255,255,0.20); }

/* GO TO TOP */
.go-to-top {
    position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px;
    background: #0089ff; color: #fff; border: none; border-radius: 50%;
    display: none; align-items: center; justify-content: center; font-size: 1.8rem; 
    cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: var(--t-fast); z-index: 999;
}
.go-to-top i { color: #FFFFFF !important; }
.go-to-top:hover { background: #00afff; transform: translateY(-3px); box-shadow: 0 0 15px 5px rgba(0, 175, 255, 0.6); }
.go-to-top.show { display: flex; animation: slideUpFade 0.3s ease; }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
    .desktop-sign-in { display: none; } 
    .mobile-sign-in-li { display: block; margin-top: 2rem; border-top: 1px solid #EEE; padding-top: 2rem; }
    body.dark-mode .mobile-sign-in-li { border-top-color: rgba(255,255,255,0.1); }
    .sign-in-btn { width: 100%; padding: 1.2rem; }
    
    .nav-links { 
        display: none; 
        margin: 0; 
        width: 100%; 
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        padding: 2rem 5%;
        background-color: #f2f2f2; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #EEE;
    }
    .nav-links.show-menu { display: flex !important; }

    .nav-links a { color: #0868B2 !important; }
    .nav-links a::after { background-color: #0868B2 !important; }

    body.dark-mode .nav-links {
        background-color: #0868B2;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    body.dark-mode .nav-links a { color: #f2f2f2 !important; }
    body.dark-mode .nav-links a::after { background-color: #f2f2f2 !important; }

    .desktop-home-btn { display: none !important; }
    .mobile-home-btn { display: flex; align-items: center; }
    
    .menu-toggle { display: block; font-size: 1.8rem; color: var(--nav-text-color); cursor: pointer; }
    
    .menu-toggle i {
        display: inline-block;
        transition: transform 0.4s ease;
    }
    .menu-toggle.is-active i {
        transform: rotate(180deg);
    }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .internal-hero .hero-content-wrapper { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .internal-hero .hero-graphic { 
        position: absolute; right: -10px; bottom: -20px; 
        width: 110px; height: 110px; font-size: 4rem; 
    }

    .privacy-container { padding: 1rem 0; }
    .page-desc { max-width: 100%; }
    
    .internal-hero .page-title { font-size: 2rem; }
    .privacy-block h2 { font-size: 1.5rem; }
    
    .privacy-block p, .privacy-list li { font-size: 1.05rem; }
    .privacy-list.type-1 li { grid-template-columns: 25px 1fr; }
    .privacy-list.type-1 .list-label { grid-column: 2; grid-row: 1; }
    .privacy-list.type-1 .list-desc { grid-column: 2; grid-row: 2; }
    
    .watermark-bg { width: 85vw; } 

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-logo-img { margin-left: auto; margin-right: auto; }
    .footer-tagline { margin-left: auto; margin-right: auto; text-align: center; }
    .social-links { justify-content: center; }
    
    .accred-row { flex-direction: column; gap: 0.8rem; }
    .accred-pipe { display: none; }
    .accred-badges { justify-content: center; gap: 1rem; flex-direction: column; }
    .accred-badge + .accred-badge::before { display: none; }
    .go-to-top, .go-to-top.show { display: none !important; }
}

@media (max-width: 600px) {
    .nav-logo { height: 40px; } 
    .internal-hero .page-title { font-size: 1.8rem; }
    .internal-hero .hero-graphic { width: 90px; height: 90px; font-size: 3.2rem; bottom: -15px; }
}

/* Sign In is now an <a href="/login"> into the app; keep the original button look. */
a.sign-in-btn,
.nav-links a.sign-in-btn { text-decoration: none; }
.nav-links a.sign-in-btn::after { display: none; }
.nav-links a.sign-in-btn { color: #0E2A47 !important; }
.nav-links a.sign-in-btn:hover { color: #f2f2f2 !important; }
body.dark-mode .nav-links a.sign-in-btn:hover { color: #0868B2 !important; }
