.footer-section {
    display: flex;
    justify-content: center;
    color: white; 
    padding: 20px 0;
}

.footer-inner {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    max-width: 1200px;
    margin-top: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-description {
    margin: 0;
    font-size: 0.9rem;
}

.links h5 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.links a {
    color: white;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.links a:hover {
    color: #00ff00; 
}

.links img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.footer-links{
    display: flex;
    width: 80%;
    /* border:2px solid black; */
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links{
        display: flex;
        flex-direction: row;
        /* border:2px solid black; */
        width: 90%;
        justify-content: space-between;
    }
    .footer-logo, .links {
        margin-bottom: 20px;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .links a {
        margin-bottom: 10px;
    }
}