.dynamic-section-container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 6vw;
}

.dynamic-section-container.layout-right {
    flex-direction: row-reverse;
}

.left-image-container {
    flex: 1;
    min-height: 500px;
    position: relative;
}

.active-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

.left-image-container:hover .active-image {
    transform: scale(1.02);
}

.right-text-content {
    flex: 1;
    padding: 40px 0px;
    display: flex;
    flex-wrap: wrap;
		justify-content: space-between;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 47%;
    flex-direction: column;
}

.content-item:hover {
    transform: translateX(8px);
}

hr {
    border: none;
    height: 1px;
    background: #eeeeee;
    margin: 18px 0;
}

.item-icon {
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.content-item:hover .item-icon img {
    transform: scale(1.1);
}

.itemText h4 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    color: #8a9bd6;
    transition: color 0.3s ease;
}

.itemText h4 a {color: #8a9bd6;}

.itemText p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #6e7c91;
    transition: color 0.3s ease;
}

.content-item.active h4, .content-item.active h4 a {
    color: #2f3135;
}

.content-item.active p {
    color: #2f4858;
}

.content-item.active .item-icon img {
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .dynamic-section-container {
        gap: 40px;
    }

    .right-text-content {
        padding: 20px;
    }

    .itemText h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .dynamic-section-container {
        flex-direction: column;
        gap: 30px;
    }

    .dynamic-section-container.layout-right {
        flex-direction: column;
    }

    .left-image-container {
        min-height: 280px;
    }

    .active-image {
        border-radius: 16px 16px 0 0;
    }

    .right-text-content {
        padding: 0;
    }

    .content-item {
        gap: 15px;
        padding: 16px 0;
    }

    .item-icon img {
        width: 36px;
        height: 36px;
    }

    .itemText h4 {
        font-size: 18px;
    }

    .itemText p {
        font-size: 14px;
    }
		
		.dynamic-section-container.layout-right {
				flex-direction: column;
		}
		
		.left-image-container {
				width: 100%;
		}


}


@media (max-width: 480px) {
	
.content-item {
    width: 100%;
}

}