.mci-features-section {
    width: 100%;
    margin: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.mci-features-container {
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.mci-feature-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0; /* Prevent text overflow breaking flex layout */
}

.mci-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f1f5f9; /* Slightly darker than container for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mci-feature-icon img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.mci-feature-icon-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.mci-feature-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.mci-feature-svg-wrap svg {
    width: 32px;
    height: 32px;
    /* fill: currentColor; */
}

.mci-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mci-feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    /* color: #0f172a; */
    margin: 0 0 4px 0 !important;
    line-height: 1.2;
    color: white;
    text-transform: capitalize;
}

.mci-feature-desc {
    font-size: 0.85rem;
    color: white;
    margin: 0 !important;
    line-height: 1.4;
}

.mci-feature-divider {
    width: 1px;
    height: 50px;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .mci-features-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 30px;
    }

    .mci-feature-divider {
        width: 100%;
        height: 1px;
    }
}
