#footer {
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 28px 0;
    color: #5f5f5f;
    font-family: 'Roboto', Arial, sans-serif;
}
#footer * { box-sizing: border-box; }
#footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
}
#footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
#footer .footer-logo {
    height: 54px;
    width: auto;
    display: block;
}
#footer .footer-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 320px;
}
#footer .footer-meta p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
#footer a {
    color: #d40041;
    text-decoration: underline;
}
#footer .footer-social p {
    margin: 0 0 8px;
    font-size: 14px;
}
#footer .footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
#footer .footer-social-links img {
    height: 30px;
    width: auto;
    display: block;
}
@media (max-width: 767px) {
    #footer .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
