
.footer-container {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    bottom: 0%;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #800080;
}

.footer-contact {
    max-width: 300px;
}

.footer-contact p {
    margin: 15px 0;
}

.footer-contact a {
    color: #800080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #9932CC;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social a {
    color: #800080;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #9932CC;
}
