.site-footer {
    background-color: #111; /* dark background */
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 10%;
}

.footer-logo img {
    max-width: 150px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 10px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    filter: invert(1); /* white icons */
    transition: filter 0.3s;
}

.footer-social a:hover img {
    filter: invert(0.7);
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #aaa;
}

.text-logo {
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: lighter;
    font-size: 1.2rem;
}

.text-logo:hover {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
