.member-container {
    position: relative;
    margin-bottom: 40px;
    padding: 0 15px;
}

.serviceAccordianBox {
    position: relative;
    height: 100%;
    width: 100%;
}

.serviceAccordianBoxInner {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Ensure consistent widths */
.row.team-members-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}

.row.team-members-row > .col-md-4 {
    width: 33.333333%;
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
}

.member-arrow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    z-index: 2;
    width: 40px;
    height: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: block;
}

.member-arrow img {
    width: 30px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bio-box {
    margin-top: 35px;
    width: 100%;
    margin-bottom: 60px;
    clear: both;
}

.accordianCollapseBoxArrow {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row.team-members-row > .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .member-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
}