* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.site-footer {
    background-color: #205992;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 0 0 30%;
    min-width: 200px;
    margin-bottom: 20px;
    margin-left: px;
}

.footer-brand {
    flex: 0 0 40%;
    text-align: center;
}

.footer-container .footer-col:nth-child(2),
.footer-container .footer-col:nth-child(3) {
    flex: 0 0 30%;
    text-align: start;
}

.footer-brand img {
    max-width: 130px;
    margin-bottom: 0px;
}

.footer-brand h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
}

.footer-col h3 {
    margin-bottom: 10px;
    font-size: 26px;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-col ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid white;
    border-radius: 50%;
    text-decoration: none;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
}

@media (max-width: 1024px) {

    .footer-container {
        justify-content: center;
        gap: 30px;
    }

    .footer-brand {
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-container .footer-col:nth-child(2),
    .footer-container .footer-col:nth-child(3) {
        flex: 0 0 45%;
        margin: 0 auto;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 26px;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }
}


@media (max-width: 768px) {

    .site-footer {
        padding: 30px 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col,
    .footer-brand {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .footer-brand img {
        max-width: 110px;
    }

    .footer-brand h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-col h3 {
        font-size: 20px;
        margin-top: 20px;
        text-align: center;
    }

    .footer-col ul {
        line-height: 1.8;
        text-align: center;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        margin: 0 6px;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        font-size: 14px;
        margin-top: 25px;
        line-height: 1.6;
    }
}

