/* footer  */

.csp-footer {
    background: #0b1c2d;
    color: #ffffff;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    display: flex;
    justify-content: center;
    justify-content: space-around;
    /* gap: 20px; */
    padding: 0 20px;
}

.footer-box h3 {
    color: #f9c74f;
    margin-bottom: 10px;
}

.footer-box p,
.footer-box li {
    font-size: 14px;
    line-height: 22px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 6px;
}

.footer-box a {
    color: #ffffff;
    text-decoration: none;
}

.footer-box a:hover {
    color: #f9c74f;
}

.footer-bottom {
    background: #071522;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 14px;
}


/* ===== Mobile Responsive Footer (420px) ===== */
@media (max-width: 420px) {

    .csp-footer {
        padding: 20px 10px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-box {
        width: 100%;
    }

    .footer-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-box p,
    .footer-box li,
    .footer-box a {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-box ul {
        padding: 0;
        list-style: none;
    }

    .footer-box ul li {
        margin-bottom: 6px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 10px;
        font-size: 13px;
        text-align: center;
    }
}


@media(max-width: 410px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }
}