 /* Small gap below title strip */
    #sj-wrapper .scope-title-strip ~ #sj-main.scope-strip-present,
    #sj-wrapper .sj-contentwrapper .scope-title-strip ~ #sj-main.scope-strip-present,
    .scope-title-strip ~ #sj-main.scope-strip-present {
        padding-top: var(--journal-strip-after-gap, 14px) !important;
        margin-top: 0 !important;
    }

    /* Force body section background to white */
    #sj-wrapper #sj-main,
    #sj-wrapper #sj-twocolumns,
    #sj-wrapper #sj-twocolumns > .container,
    #sj-wrapper #sj-twocolumns > .container > .row {
        background: #fff !important;
    }

    .scope-left-card {
        background: #fff;
        border: 1px solid #e1eaf4;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 6px 20px rgba(15, 48, 79, 0.08);
    }

    .scope-left-card h2,
    .scope-left-card h3,
    .scope-left-card h4 {
        color: #1d4f7e;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .scope-left-card p {
        color: #4b6075;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .scope-left-card ul,
    .scope-left-card ol {
        margin-left: 24px;
        margin-bottom: 16px;
    }

    .scope-left-card li {
        color: #4b6075;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 8px;
    }

    .scope-left-card img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    /* Create a grid container for images */
    .indexing-content {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
	/* Image wrapper divs */
    .indexing-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        background: #fff !important;
        min-height: 140px !important;
        transition: all 0.2s ease !important;
    }

    .indexing-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Style for images */
    .indexing-item img {
        max-width: 100% !important;
        max-height: 100px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .indexing-content {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }

    @media (max-width: 768px) {
        .indexing-content {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    @media (max-width: 480px) {
        .indexing-content {
            grid-template-columns: 1fr !important;
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        .indexing-content table td {
            flex: 0 0 calc(33.333% - 14px) !important;
        }
    }

    @media (max-width: 768px) {
        .indexing-content table td {
            flex: 0 0 calc(50% - 10px) !important;
        }
    }

    @media (max-width: 480px) {
        .indexing-content table td {
            flex: 0 0 100% !important;
        }
    }