/* Footer */
footer {
    background: #0047AB;
    color: white;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-info {
    flex: 1;
    margin: 0 40px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-copyright p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact {
    font-size: 13px;
    line-height: 2;
    flex: 1;
    margin-right: auto;
}

.footer-contact i {
    width: 10px;
    margin-right: 10px;
}


@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-info {
        margin: 20px 0;
        flex-direction: column;
        gap: 20px;
    }
}