.footer-section {
    background-color: #B41E45;
    padding: 6px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    background-color: #B41E45;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0;
}

.footer-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
    height: auto;
    padding: 10px 0px;
}

.footer-item img {
    width: 100%;
    height: auto;
    max-height: 35px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 10px 20px;
    }
    
    .footer-item {
        max-width: 140px;
        width: 40%;
    }
    
    .footer-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 4px 10px;
    }
    
    .footer-item {
        max-width: 120px;
        width: 50%;
    }
    
    .footer-item img {
        max-height: 40px;
    }
}