/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    font-size: 13px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 20px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-links a {
    font-size: 13px;
    color: #ccc;
    width: 100px;
    text-align: center;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links .divider {
    color: #555;
    width: 30px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.footer-menu {
    display: flex;
    align-items: stretch;
}

.footer-menu > .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.footer-menu > .divider::before {
    content: '';
    width: 1px;
    height: 40px;
    background: #555;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100px;
}

.footer-col a {
    font-size: 13px;
    color: #ccc;
}

.footer-col a:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }
}
