/* Shared UCE branding — mirrors the live unitedcurrencyexchange.com.au header/footer */

.uce-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(13, 32, 74, 0.08);
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

.uce-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.uce-logo {
    height: 44px;
    width: auto;
    display: block;
}

.uce-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.uce-nav ul li {
    position: relative;
}

.uce-nav ul li a {
    display: block;
    padding: 12px 24px;
    color: #1D3F87;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.uce-nav ul li a:hover {
    color: rgba(29, 63, 135, 0.8);
}

.uce-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    margin: 0;
    padding: 8px 0;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(13, 32, 74, 0.16);
    z-index: 100;
}

.uce-nav ul li:hover > ul,
.uce-nav ul li:focus-within > ul {
    display: block;
}

.uce-nav ul li ul li a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
}

.uce-nav ul li ul li a:hover {
    background: #f3f6fc;
    color: #1D3F87;
}

/* Footer — white section: logo, legal link grid, centered copyright */
.footer,
.footer .footer-bottom {
    background: #fff;
    color: #475569;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

.uce-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.uce-footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.uce-footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 12px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.uce-footer-links li {
    font-size: 14px;
}

.uce-footer-links li a {
    color: #1D3F87;
    text-decoration: none;
}

.uce-footer-links li a:hover {
    text-decoration: underline;
}

.uce-footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #475569;
    margin: 0;
    padding-bottom: 32px;
}

/* Touch devices can't hover: keep the submenu expanded inline, like mobile */
@media (hover: none) {
    .uce-nav ul li ul {
        position: static;
        display: block;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 0 12px;
    }
}

@media (max-width: 991px) {
    .uce-header-inner {
        justify-content: center;
    }

    .uce-nav ul {
        justify-content: center;
    }

    .uce-nav ul li a {
        padding: 10px 14px;
        font-size: 15px;
    }

    .uce-nav ul li ul {
        position: static;
        display: block;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 0 12px;
    }

    .uce-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
