/* Footer Base Styles */
.site-footer {
    background-color: #002663;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 3rem 1rem 1rem;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Footer Navigation */
.site-footer__navigation .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer__navigation ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.site-footer__navigation ul.menu > li {
    position: relative;
}

.site-footer__navigation ul.menu > li > a {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.site-footer__navigation ul.menu .sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0 0;
}

.site-footer__navigation ul.menu .sub-menu li {
    margin: 0.3rem 0;
}

/* Footer Contact Info */
.site-footer__contact {
    flex-basis: 100%;
    margin-top: 2rem;
}

.site-footer__address p,
.site-footer__phone a {
    margin: 0.2rem 0;
    color: #ffffff;
}

.site-footer__phone a:hover {
    text-decoration: underline;
}

/* Colophon Section */
.site-footer__colophon {
    background-color: #0b1a4d;
    color: #cccccc;
    padding: 1rem 1rem 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.site-footer__colophon a {
    color: #ffffff;
    text-decoration: underline;
}

.site-footer__colophon a:hover {
    color: #ffd700;
}

/* Colophon Flex Layout */
.site-footer__colophon .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer__copyright {
    flex-basis: 66%;
}

.site-footer__social {
    flex-basis: 33%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-footer__social ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.site-footer__social ul li a {
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
}

.site-footer__social ul li a:hover {
    color: #ffd700;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .site-footer__colophon .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__social {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}
