.footer {
    background: #f5ede3;
    border-top: 1px solid #e6dacb;
    padding: 40px 0 0;
    margin-top: 20px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6dacb;
}

.footer-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-support {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fffaf5;
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid #e6dacb;
    font-size: 14px;
    color: #4f3a2e;
    line-height: 1.5;
}

.footer-support i {
    font-size: 20px;
    color: #b48b7a;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e6dacb;
}

.footer-copy {
    font-size: 14px;
    color: #7a6454;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: #5a4537;
    transition: 0.2s;
}

.footer-nav a:hover {
    color: #b48b7a;
}

.footer-card{
    min-width: 25%;
    display: block;
    /* flex-direction: column;
    align-items: center; */

    text-align: left;

}

.footer-card:first-child{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-footer{
    display: flex;
    gap: 8px;
    font-size: 16px;

}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-support {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}