.branch-info {
    text-align: center;
    background-color: #f9fbee;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 550px;
    margin: auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.branch-logo {
    width: 450px;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.branch-image {
    width: 450px; /* Fixed width */
    height: 300px; /* Fixed height */
    object-fit: cover; /* Ensures images fit properly */
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
}

.branch-title {
    font-size: 30px;
    color: #2D1D74;
    margin-bottom: 10px;
}

.branch-details {
    font-size: 20px;
    color: #2D1D74;
    line-height: 1.8;
}

.branch-details i {
    margin-right: 10px;
    color: #2D1D74;
}

.branch-details a {
    color: #2D1D74;
    text-decoration: none;
    font-weight: bold;
}

.branch-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .branch-info {
        padding: 20px 10px;
        max-width: 100%; /* Allow full width on mobile */
    }

    .branch-logo {
        width: 0%; /* Adjust logo width to fit mobile screen */
        max-width: 300px; /* Limit max width */
        height: 0px; /* Maintain aspect ratio */
    }

    .images-container {
        flex-direction: column; /* Stack images vertically on mobile */
        gap: 10px;
    }

    .branch-image {
        width: 100%; /* Full width for images on mobile */
        height: auto; /* Adjust height automatically */
    }

    .branch-title {
        font-size: 24px; /* Slightly smaller title on mobile */
    }

    .branch-details {
        font-size: 16px; /* Smaller font size for details on mobile */
    }
}