.mep-expertise-section {
    padding: 80px 0;
    background: #fff;
}

/* Top image full width */
.mep-hero-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
}

.mep-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.mep-hero-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #feec02;
}

/* Section heading */
.mep-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.mep-main-title span {
    color: #1a1a1a;
}

.mep-main-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 820px;
}

/* Expertise cards grid */
.mep-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .mep-cards-grid {
        grid-template-columns: 1fr;
    }

    .mep-main-title {
        font-size: 26px;
    }
}

.mep-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mep-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Orange left accent bar */
.mep-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #feec02;
    border-radius: 4px 0 0 4px;
}

/* Card icon badge */
.mep-card-icon {
    width: 48px;
    height: 48px;
    background: #fffde6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mep-card-icon svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
    stroke: #1a1a1a;
}

.mep-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.mep-card-underline {
    width: 32px;
    height: 3px;
    background: #feec02;
    border-radius: 2px;
    margin-bottom: 14px;
}

.mep-card-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px;
}

.mep-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mep-card-list li {
    font-size: 13.5px;
    color: #444;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.mep-card-list li:last-child {
    border-bottom: none;
}

.mep-card-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #feec02;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Bottom CTA strip */
.mep-cta-strip {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mep-cta-strip h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.35;
}

.mep-cta-strip h3 span {
    color: #feec02;
}

.mep-cta-note {
    font-size: 13px;
    color: #aaa;
    margin: 4px 0 0;
}