/* Main footer styling */
.footer {
    display: flex;
    justify-content: space-evenly;
    background-color: #e5e5e5;
    /* Updated background color */
    color: #034d8c;
    /* Updated text color */
    padding: 10px 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    /* Allows divs to wrap on smaller screens */
}

/* Left, Middle, and Right sections */
.footer-left,
.footer-middle,
.footer-right {
    width: 32%;
    /* Equal width for larger screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    /* Ensures padding doesn't exceed width */
    direction: ltr;
}

/* Footer logo styling */
.footer-logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 5px;
}

/* Footer middle titles styling */
.footer-title {
    margin: 3px 0;
    font-size: 1.1em;
    text-align: center;
}

/* Footer right map styling */
.footer-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

/* Responsive styling for smaller screens */
@media (max-width: 880px) {
    .footer-logo {
        max-width: 30%;
    }
    .footer-left,
    .footer-middle,
    .footer-right {
        width: 80%;
        /* Sub-divs take up 80% width on mobile */
        margin: 10px 0;
        /* Adds vertical spacing between stacked divs */
    }
}