    /* Outer Wrapper */
    .v0005.scroll-window {
        width: 100%;
        max-width: 1400px;
        justify-self: center;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background: white;
        height: 40vh;
        display: flex;
        position: relative;
        top: 0;
        /*z-index: 100;*/
    }
    
    /* Image Container */
    .v0005 .image-container {
        width: 50%;
        height: 100%;
    }

    .v0005 .image-container img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Text Container */
    .v0005 .text-container {
        width: 50%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    /* Scrollable Sections */
    .v0005 .textSection {
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        display: flex;
		flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: left;
        padding: 40px;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
    }
	.v0005 .textSection h4, .v0005 .textSection p{
		align-self: flex-start;
	}

    .v0005 .textSection.active {
        opacity: 1;
    }

    /* Distinct Background Colors */
    .v0005 .textSection:nth-child(1) {
        background-color: aliceblue;
    }
    .v0005 .textSection:nth-child(2) {
        background-color: lightgreen;
    }
    .v0005 .textSection:nth-child(3) {
        background-color: lightcoral;
    }
    .v0005 .textSection:nth-child(5) {
        background-color: lightsalmon;
    }
    .v0005 .textSection:nth-child(4) {
        background-color: lightgrey;
    }

    .v0005 .content-section {
        height: 100vh;
        padding: 20px;
        font-size: 1.5em;
        color: #444;
        background: #f0f0f0;
        border-bottom: 1px solid #ccc;
    }

    body {
        overflow-y: auto;
    }