.footer {
    background: #f7f9fc;
    padding: 40px 20px;
    border-top: 1px solid #e5e8ef;
    margin-top: 60px;
    font-family: sans-serif;
}

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

.footer-brand {
    max-width: 250px;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 600;
    margin-left: 8px;
}

.footer-brand .tagline {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-links .col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}