#footer {
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 2.5em 0 1.5em;
    width: 100%;
}

#footer .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#footer .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #495057
}

#footer section {
    flex: 1 1 300px;
}

#footer h6 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer p {
    margin: 0;
    line-height: 1.6;
}

#footer .alt {
    list-style: none;
    padding: 0;
}

#footer .alt li {
    margin-bottom: 0.5em;
}

#footer a {
    color: #a2a2c2;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #fff;
}

#footer .copyright {
    text-align: center;
    margin-top: 1.5em;
    font-size: 0.9em;
}

#footer .copyright img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    #footer .content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
