.footer-image {
    border-radius: 20px;
}

.company-branch-fields {
    line-height: 18px;
}

.footer-bottom-green {
    background-color: #90c53f;
    /* Light green background */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 12px;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .footer-image {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        object-fit: cover;
        margin-bottom: 20px;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .footer-image {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
        object-fit: cover;
    }

    .footer-bottom-green {
        text-align: left;
        font-size: 16px;
    }
}