.accordion .card {
    border: 0;
    background: transparent;
    margin-bottom: 20px;
}

.accordion .card-header {
    padding: 0;
    background: transparent;
    border: 0;
}

.accordion .card-header .btn.btn-link {
    display: block;
    text-decoration: none;
    width: 100%;
    text-align: left;
    background: #f7f9fe;
    color: #1f4ea6;
    padding: 12px 16px;
    font-weight: 600;
    transition: 0.2s;
    font-size: 22px;
}
.card{
    box-shadow: 0 0 7px rgba(68, 102, 190, 0.1);
}
.btn-link.focus, .btn-link:focus{
    text-decoration: none;
}

.accordion .card-header .btn[aria-expanded="true"] {
    background: #fff;
    text-decoration: none;
}
.accordion>.card>.card-header{
    margin-bottom: 0;
}
.accordion .card .collapse .card-body {
    background: #fff;
    padding: 20px;
}

.leader-main {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    max-height: 300px;
}

.leader-main__info {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-main__info h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: #1f4ea6;
    margin-bottom: 8px;
}

.leader-main__info p {
    color: #5b6577;
    margin-bottom: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 149%;
}

.leader-main__image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    max-width: 470px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 4700px;
    flex: 0 0 470px;
    right: -35px;

}

.leader-main__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-main__divider {
    position: absolute;
    left: 56%;
    top: 0;
    bottom: 0;
    width: 28px;
    background: #175cc9;
    transform: skew(-20deg);
    z-index: 3;
}


/* ===== OTHER STAFF ===== */
.leader-other {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 18px 20px;
    background: #f8f9ff;
    margin-bottom: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.leader-other__image {
    flex-shrink: 0;
}

.leader-other__image img {
    width: 280px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
}

.leader-other__info {
    flex: 1;
}

.leader-other__info h3 {
    font-size: 26px;
    color: #1f4ea6;
    font-weight: 500;
    margin-bottom: 4px;
}

.leader-other__info p {
    font-size: 18px;
    font-weight: 500;
    color: #6a7280;
    margin: 0;
}

@media (max-width: 1200px) {
    .leader-main__info {
        padding: 30px;
    }

    .leader-main__info h3 {
        font-size: 28px;
    }

    .leader-main__info p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .leader-main {
        flex-direction: column;
        text-align: center;
    }

    .leader-main__divider {
        display: none;
    }

    .leader-main__info,
    .leader-main__image {
        flex: 0 0 100%;
    }

    .leader-main__image {
        clip-path: none;
        order: -1;
    }

    .leader-main__image img {
        height: 300px;
        width: 100%;
    }

    .leader-main__info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .leader-other {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .leader-other__image img {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .leader-main__image img {
        height: 250px;
    }

    .leader-main__info h3 {
        font-size: 24px;
    }

    .leader-main__info p {
        font-size: 16px;
    }

    .accordion .card-header .btn.btn-link {
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .leader-main__image img {
        height: 200px;
    }

    .accordion .card-header .btn.btn-link {
        font-size: 16px
    }

    .leader-other__image img {
        height: 200px;
    }

    .leader-main__info {
        padding: 20px;
    }

    .leader-other {
        padding: 15px;
    }

    .leader-other__info h3 {
        font-size: 22px;
    }

    .leader-other__info p {
        font-size: 16px;
    }
}

/* Additional improvements for very small devices */
@media (max-width: 400px) {
    .leader-main__image img {
        height: 180px;
    }

    .leader-other__image img {
        height: 180px;
    }
}