.card {
    display: flex;
    width: 100%;
    margin: 10px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.business-image {
    flex: 0 0 100px;
    height: 288px;
    object-fit: fill;
    padding: 10px;
}

.business-details {
    flex: 1; /* Takes up remaining width */
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.business-details h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.business-details p {
    margin: 5px 0;
}

.bold-text {
    font-weight: bold;
}