footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.first-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-logo img {
    max-width: 150px;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 5px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #074FAF;
}

.footer-address p {
    margin: 5px 0;
    font-size: 14px;
    text-align: left;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #074FAF;
}

.second-row {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .first-row {
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .first-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-address p {
        text-align: center;
    }

    .footer-nav,
    .footer-address,
    .footer-social {
        margin-top: 20px;
    }
}
