.footer-container {
    background-color: white;
    width: 100%;
    padding: 20px 40px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.footer-column {
    flex: 1;
    min-width: 200px;
}
.footer-column h3 {
    margin-bottom: 10px;
}
.payment-icons img {
    height: 30px;
    margin-right: 10px;
}
.payment-icons i {
    margin-right: 10px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 5px;
}
.contact-links {
    display: flex;
    align-items: center;
}
.contact-links img {
    height: 20px;
    margin-right: 10px;
}
.contact-links i {
    margin-right: 10px;
    color: black;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.footer-bottom .created-with {
    display: flex;
    align-items: center;
}
.footer-bottom .created-with img {
    height: 22px;
    margin-left: 5px;
}
.footer-bottom img {
    height: 30px;
}