    .tc-blog-style2 { background-color: unset }

    .tc-process-style2 {
        position: relative;
        overflow: hidden;
        padding: 50px 0;
    }
    .feature-section-container {
        display: flex;
        gap: 50px;
        align-items: stretch;
    }
    .feature-titles {
        flex: 0 0 35%;
        position: relative;
    }
    .feature-list {
        position: sticky;
        top: 100px;
        padding-right: 30px;
    }
    .feature-item {
        display: flex;
        align-items: center;
        padding: 5px 6px;
        margin-bottom: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #f9f9f9;
        border: 1px solid #cccccc;
        position: relative;
    }
    .feature-item.active {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #27ae60;
        transform: translateX(5px);
    }
    .feature-image-left {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        object-fit: cover;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .feature-title {
        font-size: 22px;
        font-weight: 500;
        color: #333;
        margin: 0;
        transition: color 0.3s ease;
        flex: 1;
    }
    .feature-item:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .active-indicator {
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #27ae60;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .feature-item.active .active-indicator {
        opacity: 1;
    }
    .feature-content-scroll {
        flex: 0 0 60%;
        overflow-y: auto;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        scrollbar-width: thin;
        scrollbar-color: #27ae60 #f1f1f1;
        touch-action: pan-y;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .feature-content-scroll::-webkit-scrollbar {
        width: 8px;
    }
    .feature-content-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .feature-content-scroll::-webkit-scrollbar-thumb {
        background: #27ae60;
        border-radius: 10px;
    }
    .feature-content-item {
        margin-bottom: 40vh;
        padding: 30px;
        background: #fff;
        border-radius: 15px;
        opacity: 0.5;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    .feature-content-item.active {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .feature-content-item h3 {
        font-size: 28px;
        color: #27ae60;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #eee;
    }
    .feature-content-item p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .feature-section-container {
            flex-direction: column;
            gap: 1.5rem;
        }
        .feature-titles {
            flex: none;
            order: 1;
            width: 100%;
        }
        .feature-content-scroll {
            flex: none;
            order: 2;
            height: auto !important;
            max-height: 70vh;
            width: 100%;
        }
        .feature-list {
            position: static;
            padding-right: 0;
            padding-bottom: 1rem;
        }
        .feature-title {
            font-size: 18px;
        }
        .feature-content-item h3 {
            font-size: 24px;
        }
        .feature-content-item {
            margin-bottom: 40px;
            padding: 20px;
        }
    }

    @media (max-width: 575.98px) {
        .feature-section-container {
            gap: 1rem;
        }
        .feature-image-left {
            width: 40px;
            height: 40px;
        }
        .feature-item {
            padding: 8px;
            margin-bottom: 8px;
        }
    }