footer{
    width: 100%;
    padding: 20px;
    /* background-color: #f5f5f5; */
}

.footer-text{
    display: flex;
    font-size: 14px;
    color: rgb(0, 0, 0);
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

.footer-img{
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.footer-img img{
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    footer {
        padding: 15px 10px;
    }
    
    .footer-img img {
        max-width: 90%;
    }
    
    .footer-text {
        font-size: 12px;
        padding: 0 5px;
    }
}