.footer {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: black;
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.footer-section {
    width: 23%;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h3 {
    font-size: 18px;
    text-align: left;

}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    text-align: left;

}

.footer-section ul li {
    line-height: 1.8;
    text-align: left;
}

.footer-section a {
    text-decoration: none;
    color: white;
    text-align: left;

}
.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Ensures list items align left */
}

.footer-section ul li {
    text-align: left; /* Ensures individual list items align left */
}



.img img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
}

.footer-text {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: brown;
    padding: 10px;
    
}
.text  {
    color: brown;
    text-decoration: none;
    text-align: left;
}
/* Responsive Design */
@media screen and (max-width: 900px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 80%;
    }

    .footer-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-text {
        font-size: 13px;
    }
}
