/* ============================================
   FOOTER BASE
============================================ */

footer {
    width: 100%;
    background: #448bca;
    padding: 40px 20px;
    margin-top: 40px;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* Container stays block-level and left-aligned */
footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

/* Columns stay left-aligned */
footer .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

/* Column class */
.footer-col {
    width: 100%;
}

/* Typography */
footer h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #FFFFFF;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #FFFF00;
    text-decoration: underline;
}

/* ============================================
   COPYRIGHT BAR — ONLY THIS IS CENTRED
============================================ */

footer .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;

    /* This is the ONLY centred element */
    text-align: center;
}

footer .footer-bottom span {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (min-width: 768px) {
    footer .row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col {
        width: 45%;
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 60px 0;
    }

    footer .row {
