.bel-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.bel-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.bel-footer .footer-brand {
    flex: 1 1 300px;
}

.bel-footer .footer-brand img.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    height: auto;
}

.bel-footer .footer-brand p {
    line-height: 1.6;
    color: #555;
}

.bel-footer .footer-nav {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.bel-footer h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #222;
}

.bel-footer .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bel-footer .footer-menu ul li {
    margin-bottom: 12px;
}

.bel-footer .footer-menu ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
}

.bel-footer .footer-menu ul li a:hover {
    color: #0073aa;
}

.bel-footer .footer-contact {
    flex: 1 1 250px;
}

.bel-footer .footer-contact p {
    margin: 0 0 10px;
    color: #555;
}

.bel-footer .footer-contact a {
    color: #0073aa;
    text-decoration: none;
}

.bel-footer .footer-contact a:hover {
    text-decoration: underline;
}

.bel-footer .social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.bel-footer .social-icons a {
    display: inline-block;
    color: #fff;
    background: #333;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.bel-footer .social-icons a:hover {
    background: #0073aa;
    text-decoration: none;
}

.bel-footer .footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .bel-footer .footer-nav {
        justify-content: space-between;
    }
}
