@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Roboto:wght@300;400&display=swap');
 
:root {
    --navy: #233A67;
    --yellow: #FAD12C;
    --white: #FFFFFF;
    --footer-max-width: 1440px;
}
 
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 32px 32px 0;
}
 
.footer-container {
    max-width: var(--footer-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
}
 
.footer-links-group {
    display: grid;
    grid-template-columns: auto auto;
    gap: 56px;
}
 
/* Brand / Contact column */
.footer-brand {
    display: flex;
    flex-direction: column;
}
 
.footer-logo {
    height: 58px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    margin-bottom: 16px;
}
 
.footer-brand .footer-heading {
    margin-bottom: 10px;
}
 
/* Headings */
.footer-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 10px;
}
 
/* Services / Useful Links columns */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.footer-links a {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
 
.footer-links a:hover {
    color: var(--yellow);
    text-decoration: underline;
}
 
.footer-links-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
 
/* Contact list */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--white);
}
 
.footer-contact-list a {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
 
.footer-contact-list a:hover {
    color: var(--yellow);
    text-decoration: underline;
}
 
/* Bottom bar */
.footer-bottom {
    max-width: var(--footer-max-width);
    margin: 0 auto;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}
 
.footer-bottom p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
 
/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
 
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        width: 100%;
    }
}
 
@media (max-width: 560px) {
    .site-footer {
        padding: 40px 20px 0;
    }
 
    .footer-links-group {
        grid-template-columns: 1fr;
    }
 
    .footer-links-split {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}