.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-text {
    flex: 1; /* allows the text to grow */
    min-width: 120px; /* minimum width for the text to ensure layout does not break */
}

.footer-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-image {
    max-width: 100px;
    height: auto; /* maintain aspect ratio */
    margin-left: 20px; /* spacing between images */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .card-footer {
        justify-content: center;
        text-align: center;
    }

    .footer-text {
        flex-basis: 100%; /* makes the text take the full width on small screens */
        margin-bottom: 10px; /* spacing between text and images */
    }

    .footer-images {
        flex-basis: 100%;
        justify-content: center;
    }

    .footer-image {
        max-width: 80px;
        margin-left: 10px; /* reduced spacing between images on small screens */
    }
}


.logo-img-1 {
    width: 45%;
}

.logo-img-2 {
    width: 48%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}