:root {
            --navy:   #00517C;
            --blue:   #0066B1;
            --accent: #E8F4FD;
            --light:  #F7FAFE;
            --border: #DDE8F0;
            --text:   #1A2E3B;
            --muted:  #5A7A8E;
            --white:  #FFFFFF;
            --gold:   #C89A3C;
        }

        *, *::before, *::after { box-sizing: border-box;  }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.7;
        }

       
        /* Hamburger button — hidden on desktop */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            padding: 8px;
            transition: border-color .2s;
        }
        .hamburger:hover { border-color: var(--blue); }
        .hamburger span {
            display: block;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: transform .3s, opacity .3s;
        }
        /* Animate to X when open */
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile drawer */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 190;
        }

        .mobile-menu-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.45);
        }

        .mobile-menu-panel {
            position: absolute;
            top: 0; right: 0;
            width: min(320px, 85vw);
            height: 100%;
            background: var(--white);
            padding: 80px 28px 32px;
            overflow-y: auto;
            box-shadow: -4px 0 24px rgba(0,0,0,.15);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu-panel a {
            display: block;
            padding: 13px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            border-bottom: 1px solid var(--border);
            transition: background .18s, color .18s;
        }
        .mobile-menu-panel a:last-child { border-bottom: none; }
        .mobile-menu-panel a:hover { background: var(--accent); color: var(--blue); }
        .mobile-menu-panel a.donate-link {
            background: var(--blue);
            color: var(--white);
            text-align: center;
            border-radius: 30px;
            margin-top: 10px;
            border-bottom: none;
        }
        .mobile-menu-panel a.donate-link:hover { background: var(--navy); }

        .mobile-menu.open { display: block; }

        /* Close button inside panel */
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px; height: 36px;
            background: var(--accent);
            border: none;
            border-radius: 50%;
            font-size: 1.1rem;
            color: var(--navy);
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
        }

        /* ─── PAGE HERO ────────────────────────────────────── */
        .page-hero {
            background: linear-gradient(135deg, var(--navy) 0%, #006fa0 60%, #0083c1 100%);
            padding: 5px 5px 5px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
        }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            color: var(--white);
            letter-spacing: 1px;
            position: relative;
        }

        .page-hero .breadcrumb {
            margin-top: 10px;
            font-size: .85rem;
            color: rgba(255,255,255,.7);
            position: relative;
        }

        .page-hero .breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }

        /* ─── MAIN LAYOUT ──────────────────────────────────── */
        .page-body {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 28px;
            align-items: start;
        }

        /* ─── SECTION LABELS ───────────────────────────────── */
        .section-label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.45rem;
            color: var(--navy);
            margin-bottom: 18px;
        }

        /* Featured (numbered) logos */
        .featured-logos-banner {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 24px rgba(0,81,124,.06);
        }

        .banner-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--accent);
        }

        .banner-badge {
            background: var(--gold);
            color: var(--white);
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            white-space: nowrap;
            align-self: center;
        }

        .numbered-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 14px;
        }

        .logo-card {
            background: var(--light);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            height: 105px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 14px;
            position: relative;
            transition: transform .25s, box-shadow .25s, border-color .25s;
        }

        .logo-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,102,177,.12);
            border-color: var(--blue);
        }

        .logo-card .num-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--blue);
            color: var(--white);
            font-size: .63rem;
            font-weight: 700;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,102,177,.35);
        }

        .logo-card img {
            max-width: 90%;
            max-height: 62px;
            object-fit: contain;
        }

        /* All Other logos */
        .all-logos-section {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 24px rgba(0,81,124,.06);
        }

        .logos-general-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .logo-card-plain {
            background: var(--light);
            border: 1px solid var(--border);
            border-radius: 10px;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            transition: transform .22s, box-shadow .22s, border-color .22s;
        }

        .logo-card-plain:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,81,124,.10);
            border-color: var(--blue);
        }

        .logo-card-plain img {
            max-width: 100%;
            max-height: 58px;
            object-fit: contain;
            filter: grayscale(20%);
            transition: filter .22s;
        }

        .logo-card-plain:hover img { filter: grayscale(0%); }

        /* ─── SIDEBAR ──────────────────────────────────────── */
        .page-body .sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .page-body .sidebar-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 3px 16px rgba(0,81,124,.06);
        }

        .page-body .sidebar-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: var(--navy);
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

        .sidebar-card p {
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .page-body .sidebar-card ul {
            list-style: none;
            margin-top: 10px;
        }

        .page-body .sidebar-card ul li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 9px;
            font-size: .86rem;
            color: var(--text);
            line-height: 1.5;
        }

       .page-body .sidebar-card ul li .fa-check-circle {
            color: var(--blue);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .86rem;
            color: var(--muted);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .contact-item i { color: var(--blue); width: 16px; margin-top: 2px; flex-shrink: 0; }
        .contact-item a { color: var(--blue); text-decoration: none; word-break: break-all; }
        .contact-item a:hover { text-decoration: underline; }

        .btn-primary {
            display: inline-block;
            background: var(--blue);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: .86rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 12px;
            transition: background .2s, transform .18s;
        }

        .btn-primary:hover { background: var(--navy); transform: translateY(-1px); }

        .page-body .links-list { margin-top: 8px; }
        .page-body .links-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            font-size: .86rem;
        }
       .page-body  .links-list li:last-child { border-bottom: none; }
       .page-body  .links-list li a { color: var(--blue); text-decoration: none; font-weight: 500; }
        .page-body  .links-list li a:hover { text-decoration: underline; }
        .page-body  .links-list li i { color: var(--muted); font-size: .78rem; }

        /* ─── PLACEHOLDER ──────────────────────────────────── */
        .logo-placeholder {
            width: 88px;
            height: 38px;
            background: linear-gradient(135deg, var(--border) 0%, #c8dbe8 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .62rem;
            color: var(--muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            padding: 4px;
        }

        /* Animate on load */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .logo-card, .logo-card-plain { animation: fadeUp .4s ease both; }

       
        /* ─── RESPONSIVE: TABLET ───────────────────────────── */
        @media (max-width: 960px) {
            .page-body {
                grid-template-columns: 1fr;
            }

            /* On tablet/mobile, sidebar becomes a 2-col grid of cards */
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

        }

        /* ─── RESPONSIVE: MOBILE ───────────────────────────── */
        @media (max-width: 640px) {
            /* Hide desktop nav, show hamburger */
            .nav-links  { display: none; }
            .hamburger  { display: flex; }

            .page-body  { margin: 24px auto; padding: 0 14px; gap: 20px; }

            /* Sidebar goes back to single column on small screens */
            .sidebar {
                grid-template-columns: 1fr;
            }

            .numbered-grid,
            .logos-general-grid { grid-template-columns: repeat(2, 1fr); }

            .featured-logos-banner,
            .all-logos-section { padding: 18px 14px; }

            
        }

        @media (max-width: 380px) {
            .numbered-grid,
            .logos-general-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        }

#c4y-footer-mount,
#c4y-footer-mount * {
    box-sizing: border-box;
}

/* Restore footer background */
#c4y-footer-mount footer {
    background: #07263A !important;
    color: #ffffff !important;
}

/* Headings */
#c4y-footer-mount h3,
#c4y-footer-mount h4,
#c4y-footer-mount .footer-title {
    color: #ffffff !important;
}

/* Links */
#c4y-footer-mount a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
}

/* Hover */
#c4y-footer-mount a:hover {
    color: #C89A3C !important;
}

/* Remove white cards/backgrounds */
#c4y-footer-mount .links-list,
#c4y-footer-mount .sidebar-card,
#c4y-footer-mount .footer-column,
#c4y-footer-mount .footer-widget {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Footer lists */
#c4y-footer-mount ul,
#c4y-footer-mount li {
    list-style: none;
    background: transparent !important;
}

/* Prevent inherited page card styles */
#c4y-footer-mount .links-list li {
    border-bottom: none !important;
    padding: 0 !important;
}
/* Force footer styling */

#c4y-footer-mount {
    background: #07263A !important;
}

#c4y-footer-mount .links-list,
#c4y-footer-mount .footer-widget,
#c4y-footer-mount .footer-column,
#c4y-footer-mount .sidebar-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#c4y-footer-mount .links-list li a,
#c4y-footer-mount a {
    color: rgba(255,255,255,0.88) !important;
}

#c4y-footer-mount a:hover {
    color: #C89A3C !important;
}

#c4y-footer-mount h3,
#c4y-footer-mount h4 {
    color: #ffffff !important;
}
/* =========================
   FOOTER RESET
========================= */

.c4y-footer,
.c4y-footer * {
    box-sizing: border-box;
}

.c4y-footer {
    background: #07263A !important;
    color: #ffffff !important;
}

.c4y-footer a {
    color: rgba(255,255,255,0.85) !important;
}

.c4y-footer a:hover {
    color: #C89A3C !important;
}

.c4y-footer__links a {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.c4y-footer__col-title {
    color: #ffffff !important;
}

.c4y-footer ul,
.c4y-footer li {
    list-style: none !important;
    background: transparent !important;
    border: none !important;
}

