/* Footer CSS */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 2%;
    width: 100%;
    background-color: #0A1A2F;
    color: white;
    flex-wrap: wrap;
    box-sizing: border-box;    
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brandfoot {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brandfoot img {
    height: 30px;
    width: auto;
}
.brandfoot .logo {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: white;    
}
.copyright {
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 10px;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    padding: 10px 10px;
    font-family: Calibri, Verdana, Arial, sans-serif;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-column h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: bold;
}
.footer-column a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.footer-column a:hover {
    color: white;
}