/* ==========================================================================
   PVGT TERMS & CONDITIONS STYLES
   ========================================================================== */

/* 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: #FFFFFF;
    --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; }
i[class^="fa-"] { font-style: normal !important; }
.mobile-break { display: none; }

/* WATERMARK ANIMATIONS & STYLES */
.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, .terms-section, footer { position: relative; z-index: 10; }

/* NAVIGATION MODULE */
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; align-items: center; }
.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-home-link { display: none; color: var(--nav-text-color); font-size: 1.25rem; transition: var(--transition-sharp); }
.mobile-home-link:hover { color: var(--nav-hover-line); }

.mobile-sign-in-li, .menu-toggle { display: none; }
.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; }

/* 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); }

/* HERO MODULE */
.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 ANIMATIONS */
@keyframes liquidMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translateY(0) rotate(0deg); }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translateY(-12px) rotate(3deg); }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translateY(0) rotate(-3deg); }
}
.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; background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4); border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: liquidMorph 8s ease-in-out infinite alternate;
}

/* TERMS DOCUMENT MODULE */
.terms-section { padding: 4rem 5%; } 
.terms-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; }

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

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

.terms-block { margin-bottom: 2.5rem; }
.terms-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 .terms-block h2 { color: #f5f5f5 !important; }
.terms-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; }

/* LIST STYLING */
.terms-list { display: grid; grid-template-columns: 25px minmax(180px, max-content) 1fr; column-gap: 1.5rem; row-gap: 1.2rem; list-style: none; padding-left: 0; margin-bottom: 1.5rem; }
.terms-list li { display: contents; }

.terms-list-simple { display: grid; grid-template-columns: 25px 1fr; column-gap: 1.5rem; row-gap: 1.2rem; list-style: none; padding-left: 0; margin-bottom: 1.5rem; }
.terms-list-simple li { display: contents; }

.list-icon { grid-column: 1; color: var(--pvgt-blue); font-size: 1rem; margin-top: 0.35rem; }
body.dark-mode .list-icon { color: #0089ff; }

.list-label { grid-column: 2; font-weight: 700; font-size: 1.2rem; color: #0072ff; }
body.dark-mode .list-label { color: #00E5FF; }

.list-desc { grid-column: 3; font-size: 1.2rem; line-height: 1.7; color: #000000; }
body.dark-mode .list-desc { color: #f5f5f5; }

.list-text { grid-column: 2; font-size: 1.2rem; line-height: 1.7; color: #000000; }
body.dark-mode .list-text { color: #f5f5f5; }

.terms-divider { border: 0; height: 1px; background: rgba(14, 42, 71, 0.1); margin: 2.5rem 0; }
body.dark-mode .terms-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 MODULE */
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-col-main { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

/* Dynamic Footer Logo Background */
.footer-logo-img { 
    width: 200px; height: auto; display: block; margin: 0 0 1.25rem 0; 
    background: transparent; /* Transparent in Day Mode */
    padding: 10px 14px; border-radius: 16px; 
    transition: background 0.8s ease; /* Seamless Transition */
}
body.dark-mode .footer-logo-img {
    background: #FFFFFF; /* White in Dark Mode */
}

/* Dynamic Footer Tagline */
.footer-col-main p.footer-tagline { 
    font-family: Helvetica, Arial, sans-serif;
    text-align: left !important; 
    font-weight: 800 !important; 
    font-style: oblique !important; 
    color: #0E2A47 !important; /* Day Mode Color */
    font-size: 1.15rem; 
    line-height: 1.65; 
    max-width: 260px; 
    margin: 0; 
    transition: color 0.8s ease; 
}
body.dark-mode .footer-col-main p.footer-tagline {
    color: #f2f2f2 !important; /* Dark Mode Color */
}

.footer-col-main .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); }
.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;}
.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; transition: color var(--t-fast), padding-left var(--t-fast); text-decoration: none !important; }
.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; letter-spacing: 0.1em; text-transform: uppercase; color: var(--footer-accred-heading-mode); white-space: nowrap; flex-shrink: 0; font-style: oblique; 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-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; }

/* Ensures DHL image perfectly covers the entire bounding box */
.accred-logo-dhl { padding: 0 !important; overflow: hidden; background: transparent; }
.accred-logo-dhl img { 
    height: 100% !important; 
    width: 100% !important; 
    max-width: none !important; 
    object-fit: cover !important; 
    border-radius: inherit; 
    margin: 0;
}

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

/* SPECIAL ELEMENT STYLING */
.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 DESIGN MODULE */
@media (max-width: 1024px) {
    .desktop-sign-in { display: none; } 
    .desktop-home-li { display: none; }
    
    .mobile-sign-in-li { 
        display: flex; justify-content: center; width: 100%; 
        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%; max-width: 400px; padding: 1.2rem; }
    
    .nav-links { 
        display: none; margin: 0; width: 100%; flex-direction: column; align-items: flex-start;
        position: absolute; top: 100%; left: 0; padding: 2rem 5%; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 1px solid #EEE;
        background-color: #f2f2f2; 
    } 
    .nav-links.active { display: flex !important; }
    .nav-links a { 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; }

    .menu-toggle { display: block; font-size: 1.8rem; color: var(--nav-text-color); cursor: pointer; }
    
    .menu-toggle i { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }
    .menu-toggle.spin-active i { transform: rotate(180deg); }
    
    .mobile-home-link { display: inline-flex; align-items: center; justify-content: center; margin-right: 20px;}
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .mobile-break { display: block; }
    .internal-hero .hero-content-wrapper { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .internal-hero .hero-graphic { 
        position: absolute; right: -10px; bottom: -30px; width: 140px; height: 140px;
        font-size: 5rem; opacity: 1; color: #020024; animation: liquidMorph 12s ease-in-out infinite alternate;
    }
    .terms-container { padding: 1rem 0; }
    .page-desc { max-width: 100%; }
    .internal-hero .page-title { font-size: 1.7rem; }
    .terms-block h2 { font-size: 1.5rem; }
    .terms-block p, .list-desc, .list-text { font-size: 1.05rem; }
    
    .terms-list { grid-template-columns: 25px 1fr; column-gap: 0.5rem; row-gap: 1.5rem; }
    .list-label { grid-column: 2; font-size: 1.15rem; }
    .list-desc { grid-column: 2; margin-top: 0.3rem; }
    .terms-list-simple { column-gap: 0.5rem; row-gap: 1.5rem; }
    .watermark-bg { width: 85vw; } 

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col-main { align-items: center; }
    .footer-col-main p { max-width: 200px; margin: 0 auto; text-align: center !important; }
    .social-links { justify-content: center; }
    .accred-row { flex-direction: column; gap: 0.8rem; align-items: center; }
    .accred-pipe { display: none; }
    .accred-badges { justify-content: center; gap: 1rem; flex-direction: column; align-items: center; }
    .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; } 
}

/* 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; }
