.business-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
    color: #FFFFFF;
    width: 100%;
}

.info-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap for closer card spacing */
    width: 100%;
}

.bcard {
    display: inline-block;
    margin: 5px; /* Reduced margin for closer proximity */
}

.card-header {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    background: #FFF;
    color: #C28834;
    padding: 10px 15px;
    border-radius: 4px;
    box-sizing: border-box;
}

.card-body {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    background: transparent;
    color: #FFFFFF;
    padding: 10px 15px;
}

.bcard {
    width: fit-content;
}

.card-header, .card-body {
    display: block;
}

@media (max-width: 768px) {
    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .bcard {
        width: auto; /* Keep the same width as desktop */
        margin: 10px 0; /* Adjust margin for better spacing */
    }