footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 150px;
    background-color: white;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    height: 120px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.footer-center p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.footer-center p a {
    color: #081548;
    text-decoration: none;
    margin: 0 5px;
    position: relative;
}

.footer-center p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #081548;
    transition: width 0.6s ease-in-out;
}

.footer-center p a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.footer-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-right ul li {
    margin-bottom: 10px;
    line-height: 0.6;
    font-weight: 100;
}

.footer-right ul li a {
    color: #081548;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

.footer-right ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #081548;
    transition: width 0.6s ease-in-out;
}

.footer-right ul li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-left, .footer-center, .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-left img {
        height: 80px;
        margin-bottom: 10px;
    }

    .footer-center p {
        font-size: 12px;
    }

    .footer-right ul {
        text-align: center;
        padding: 0;
    }

    .footer-right ul li {
        display: inline-block;
        margin: 0 10px;
    }

    .footer-right ul li a {
        font-size: 12px;
    }
}