.footer {
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid #111;
    font-family: inherit;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-logo-col {
    align-items: flex-start;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-logo-col p {
    font-style: italic;
    color: #aaa;
    margin: 0;
}

.footer-column h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #444;
    display: inline-block;
    padding-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-column p {
    margin: 5px 0 10px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-column a {
    display: inline-block;
    color: #4da3ff;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 1rem;
    transition: color 0.2s, text-decoration 0.2s;
}

.footer-column a:hover {
    color: #80c1ff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 4%;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-logo {
        max-width: 180px;
    }
}